Re: FOSDEM 2013

2013-01-30 Thread Federico Di Gregorio
On 29/01/2013 12:55, Marco d'Itri wrote:
 Chi viene?
 Ci vediamo venerdì sera a cena, prima di annegarci nella birra?
 
 Io arriverò con il volo da Malpensa delle 12, quindi dopo un veloce 
 barile di cozze da Chez Leon conto di fare il turista. Qualcuno ha già 
 piani per il pomeriggio? Oppure vuole aggregarsi senza piani?
 O ha idee migliori?
 
 Dormirò al Citadines Sainte-Catherine come l'anno scorso, c'è qualcuno?

NH City Center come sempre. Ti mando il mio cell in privato così
eventualmente possiamo sentirci per cene e affini.

federico

-- 
Federico Di Gregorio federico.digrego...@dndg.it
Studio Associato Di Nunzio e Di Gregorio  http://dndg.it
  All'inizio ho scritto un programma proprietario, in esclusiva per il
   cliente; è stato tristissimo, perché mi ha succhiato un pezzo di
   anima.   -- Alessandro Rubini



signature.asc
Description: OpenPGP digital signature


Re: FOSDEM 2013

2013-01-30 Thread Marco d'Itri
On Jan 30, Federico Di Gregorio f...@dndg.it wrote:

 NH City Center come sempre. Ti mando il mio cell in privato così
 eventualmente possiamo sentirci per cene e affini.
OK, il mio è sempre il solito.

Ma tutti gli altri? Non leggete la lista o semplicemente vi sto sul 
cazzo?

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: FOSDEM 2013

2013-01-30 Thread Enrico Zini
On Wed, Jan 30, 2013 at 03:38:52PM +0100, Marco d'Itri wrote:

 Ma tutti gli altri? Non leggete la lista o semplicemente vi sto sul 
 cazzo?

Fondamentalmente non leggo molto la lista :)

Noi arriveremo su in carovana da 9 venerdí sul tardi, e al gruppo se ne
aggiungono altri 3. A seconda di come sarà la strada non sappiamo se ce
la facciamo ad arrivare per il beer event.

Essendo in 12 abbiamo anche un po' di inerzia per il muoverci. Direi di
beccarsi direttamente al Delirium venerdí o al Fosdem sabato.

Nel dubbio, ti mando anch'io il mio numero in privato.


Ciao,

Enrico

-- 
GPG key: 4096R/E7AD5568 2009-05-08 Enrico Zini enr...@enricozini.org


signature.asc
Description: Digital signature


Re: Go (golang) packaging, part 2

2013-01-30 Thread Michael Stapelberg
Hi Chow,

Chow Loong Jin hyper...@debian.org writes:
  1. If software that depends on native packages is installed using go get
 or whatever other language-specific package manager, e.g. pip for Python 
 or
 gem for Ruby is installed, there is no way to declare a dependency on
 those. For example, the Python mysql bindings require some MySQL C headers
 which are available in Apt, but you won't know until your pip install run
 fails due to missing headers. After you're done, you move on to your next
 dependency which also fails due to missing headers, and the next, and the
 next…
True.

  2. If something installed from your language-specific package manager is in a
 path that a Debian package overrides, dpkg is going to barf because it
 doesn't know where those files come from. This of course applies to
 randomly ./configure-ing stuff with --prefix=/usr and running make
 install.
Not going to happen in case of go. “go get” _always_ installes into a
user-defined path with ~/gocode being the recommendation.

  3. Software packages from Apt cannot declare dependencies against
 language-specific packages, for the same reasons highlighted in
 #1.
Irrelevant argument in our case, as outlined earlier in the discussion.

-- 
Best regards,
Michael


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



Re: No native packages?

2013-01-30 Thread Ian Campbell
On Wed, 2013-01-30 at 17:58 +1100, Joey Hess wrote:
 Julien Cristau wrote:
   Maybe I forgot the answer, but at least in terms of git and the dpkg
   3.0 (git) format, why can't we simply make use of shallow cloning?
  
  At which point you have lost all the advantages of shipping the
  repository that Tollef mentioned, as far as I can tell.  You're back to
  needing an external repository that's kept up to date if you ever need
  to get at the history.
 
 You can shallow clone at depth one each ref in the repository, which gets you
 all tags (filter to released versions to avoid needing any further license
 review).

Is it also possible to say everything in branch A which isn't in branch
B, so that you could include everything from the debian branch but
not the upstream branch? That might be useful when you aren't 100%
certain of the DFSG freeness of the upstream history, whereas you might
well be happy that the versions incorporated into the debian branch were
ok.

Also, I wonder if it is possible to arrange that having unpacked a git
format source package that the remotes for debian and upstream are
already prepopulated in the repo such that git remotes update would
fetch all of the missing history without having to git remotes add
etc.

Ian.

-- 
Ian Campbell


In Newark the laundromats are open 24 hours a day!


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1359535095.10403.14.ca...@dagon.hellion.org.uk



Re: Go (golang) packaging, part 2

2013-01-30 Thread Paul Wise
On Tue, Jan 29, 2013 at 7:55 PM, Iustin Pop wrote:

 I would add one thing here: Haskell/GHC also (currently) doesn't create
 shared libraries, and instead builds the program statically, but the
 Debian Haskell group still tries to package as best as they can the
 development libraries, for all the reasons above (which are very good
 reasons, IMHO).

 So, take this as an example of another language which doesn't do shared
 linking but for which libraries are still packaged in Debian.

Do all Haskell packages add Built-Using headers?

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: Go (golang) packaging, part 2

2013-01-30 Thread Paul Wise
On Wed, Jan 30, 2013 at 11:15 AM, Chow Loong Jin wrote:

 Having multiple package managers which don't know about each other on a system
 is evil™ (but in some cases, can be managed properly).

Some integration between dpkg and domain-specific package managers
could be useful. With DEP-11, we could have 'cpan install Foo::Bar'
tell you Foo::Bar is available in your distribution's package
manager, you can install it with apt-get install libfoo-bar-perl..

Also, GoboLinux apparently have a more advanced system for integration
between their package manager and others like rubygems/cpan.
Unfortunately the video for the presentation about it at LCA 2010 was
lost, but maybe folks who are interested in this could take a look at
the implementation.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/caktje6gj9wo5gdv_exc5y7b-d_kbdse+bfgiyfxj66j-unk...@mail.gmail.com



Re: Go (golang) packaging, part 2

2013-01-30 Thread Thibaut Paumard
Le 30/01/2013 09:55, Paul Wise a écrit :
 On Wed, Jan 30, 2013 at 11:15 AM, Chow Loong Jin wrote:
 
 Having multiple package managers which don't know about each other on a 
 system
 is evil™ (but in some cases, can be managed properly).
 
 Some integration between dpkg and domain-specific package managers
 could be useful. With DEP-11, we could have 'cpan install Foo::Bar'
 tell you Foo::Bar is available in your distribution's package
 manager, you can install it with apt-get install libfoo-bar-perl..
 
 Also, GoboLinux apparently have a more advanced system for integration
 between their package manager and others like rubygems/cpan.
 Unfortunately the video for the presentation about it at LCA 2010 was
 lost, but maybe folks who are interested in this could take a look at
 the implementation.
 

FWIW, in the case of the Yorick language, I have proposed a developed
with upstream a solution which works reasonably well for the Yorick
community:

 - the yorick internal package manager can install (by default) files
either in /usr/local or in the user home directory;

 - Debian packages for an add-on drop a file somewhere under /usr/lib so
that the yorick internal package manager knows what version of which
add-ons are installed and does not unnecessarily install another version
of an add-on for solving a dependency.

However, the internal package manager only knows what is installed, not
what is available, and dpkg of course has no idea of what the yorick
internal package manager has installed.

Kind regards, Thibaut.



signature.asc
Description: OpenPGP digital signature


Re: No native packages?

2013-01-30 Thread Thomas Goirand
On 01/29/2013 08:29 AM, Russ Allbery wrote:
 Benjamin Drung bdr...@debian.org writes:

 Other distributions gain from your extra work. Image the opposite. You
 want to package a software that is only available in a downstream
 distribution (e.g. Ubuntu or Linux Mint). Do you prefer to have a
 non-native format or a native format?
 I'm not sure I see how it makes any difference.  Either way, I would start
 with their package and add Debian packaging files for Debian.  The only
 difference is some minor variation in what commands I run at the very
 start of that process (namely, git-import-dsc for a non-native package
 vs. git-import-orig for a native package).  I have a hard time seeing how
 this choice would make more than thirty seconds of difference to my
 workflow.

Well, this happened to me once (a package in Ubuntu), and I asked
upstream to switch to non-native, which he did.

The problem wasn't the work flow, but mainly tracking upstream
version numbers. With a non-native, I can make the difference
between packaging and non-packaging changes just by looking
at the version number in Ubuntu, and I can even make a watch
file to track it for me.

Thomas


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



Re: No native packages?

2013-01-30 Thread Thomas Goirand
On 01/28/2013 08:59 PM, Gergely Nagy wrote:
 In my opinion, a native package is the wrong choice when your only
   arguments for it is convenience.

   That's not a strong argument
To the contrary, I think that convenience of one or another
format is the *only* argument.

What you've listed as counter-argument are cases were it isn't
convenient, IMO. And that's why we design packaging tools and
format: so that they are convenient to use. I don't think you
should feel bad because of that kind of laziness. I see it as
an optimization of your work flaw rather than laziness (that's
just different wording for the exact same idea in a more
positive way).

Also, I'm sorry but I don't buy your argument that newbies
would see bad native-package examples and reproduce it. Anyone
who looked a bit into -mentors@l.d.o (and I know you do) will
be able to tell that they do use native packages anyway by
simple mistake and lack of knowledge. Repeatedly, we have to
explain anyway.

Also, I don't understand why you think an NMU becomes awkward
if it deals with a native package. Could you explain?

On 01/28/2013 08:59 PM, Gergely Nagy wrote:
 There are good arguments *for* a native package, as Joey listed, and
 they can work well if upstream == maintainer. But as soon as that
 relationship breaks, for whatever reason, care needs to be taken both
 upstream and both in packaging to ensure a smooth transition. I've seen
 that fail before, though, not with native packages.

I fail to understand why this would be a problem for the 2 native
package I maintain (eg: debpear and openstack-pkg-tools). The
new maintainer would just take over the work (as usual?)...

Thomas


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



Re: Go (golang) packaging, part 2

2013-01-30 Thread Tollef Fog Heen
]] Michael Stapelberg 

 I am not familiar with the Ruby situation, I only know that many Ruby
 developers seem to be very angry at Debian people. Is there a summary of
 the events that I could read?

Debian's rubygems package installed gems to a directory not in $PATH,
meaning most documentation from upstreams on how to use the gems didn't
actually work.  This has since been fixed and newer rubygems install
gems to /usr/local.

[...]

 Sysadmins are not developers and therefore don’t need to learn any new
 commands.

If you believe this is true, you should read up on the whole idea of
devops.

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


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



Haskell and Built-Using (Was: Go (golang) packaging, part 2)

2013-01-30 Thread Joachim Breitner
Hi,

Am Mittwoch, den 30.01.2013, 16:52 +0800 schrieb Paul Wise:
 On Tue, Jan 29, 2013 at 7:55 PM, Iustin Pop wrote:
  I would add one thing here: Haskell/GHC also (currently) doesn't create
  shared libraries, and instead builds the program statically, but the
  Debian Haskell group still tries to package as best as they can the
  development libraries, for all the reasons above (which are very good
  reasons, IMHO).
 
  So, take this as an example of another language which doesn't do shared
  linking but for which libraries are still packaged in Debian.
 
 Do all Haskell packages add Built-Using headers?

no, not yet (it is a relatively young addition to the Debian policy). I
have filed a bug against haskell-devscripts to remember that (#699329).

Maybe dh_buildinfo can be extended to output its results as a substvar?
After all, it already collects a (safe approximation) to the data
expected in the Built-Using header:

„This script is designed to be run at build-time, and registers
in a file the list of packages declared as build-time
dependencies, as well as build-essential packages, together with
their versions, as installed in the build machine.“

So all that seems to be missing is to look up the source name and
versions of these packages.

Greetings,
Joachim
-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


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


Re: No native packages?

2013-01-30 Thread Thomas Goirand
On 01/30/2013 04:38 PM, Ian Campbell wrote:
 Also, I wonder if it is possible to arrange that having unpacked a git
 format source package that the remotes for debian and upstream are
 already prepopulated in the repo such that git remotes update would
 fetch all of the missing history without having to git remotes add
 etc.
Yeah, I would love to have this as well. Currently, I do:
./debian/rules get-vcs-source

which adds upstream repository, does a git fetch upstream and create
the orig.tar.xz for me.

It's not as nice as what you describe (which I would like to have too),
but it is a nice workaround.

Thomas


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



Re: Go (golang) packaging, part 2

2013-01-30 Thread Stefano Zacchiroli
On Wed, Jan 30, 2013 at 04:52:33PM +0800, Paul Wise wrote:
 On Tue, Jan 29, 2013 at 7:55 PM, Iustin Pop wrote:
  So, take this as an example of another language which doesn't do shared
  linking but for which libraries are still packaged in Debian.

FWIW, OCaml is another such example.

 Do all Haskell packages add Built-Using headers?

The OCaml toolchain in Debian doesn't either, #699330 has now been filed
to address that.

Cheers.
-- 
Stefano Zacchiroli  . . . . . . .  z...@upsilon.cc . . . . o . . . o . o
Maître de conférences . . . . . http://upsilon.cc/zack . . . o . . . o o
Debian Project Leader . . . . . . @zack on identi.ca . . o o o . . . o .
« the first rule of tautology club is the first rule of tautology club »


signature.asc
Description: Digital signature


Re: Go (golang) packaging, part 2

2013-01-30 Thread Paul Wise
On Wed, Jan 30, 2013 at 8:07 PM, Stefano Zacchiroli wrote:
 On Wed, Jan 30, 2013 at 04:52:33PM +0800, Paul Wise wrote:
 On Tue, Jan 29, 2013 at 7:55 PM, Iustin Pop wrote:
  So, take this as an example of another language which doesn't do shared
  linking but for which libraries are still packaged in Debian.

 FWIW, OCaml is another such example.

 Do all Haskell packages add Built-Using headers?

 The OCaml toolchain in Debian doesn't either, #699330 has now been filed
 to address that.

Could folks who are familiar with these languages submit bugs against
lintian about detecting packages for these languages that should have
Built-Using but don't?

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: Go (golang) packaging, part 2

2013-01-30 Thread Marcelo E. Magallon
On Wed, Jan 30, 2013 at 09:22:12AM +0100, Michael Stapelberg wrote:

   3. Software packages from Apt cannot declare dependencies against
  language-specific packages, for the same reasons highlighted in
  #1.
 Irrelevant argument in our case, as outlined earlier in the
 discussion.

 That's not quite true.

 If a Debian package uses a service (think database, webserver,
 etc) provided by a laguage-specific package, you cannot declare
 such dependency because Apt doesn't have visibility into the
 other system's information.

 At that point you are in the Rubygems situation, where you have
 to start packaging the language-specific packages for Debian.
 You get into trouble when rubygems sees package-0.0.1 installed
 (and managed by dpkg) and the user installs (via gems)
 application-1.0.0 which declares a dependency on package-0.1.0.

 Now what would you expect to happen?

 rubygems tells dpkg to upgrade package-0.0.1?  What about the
 other stuff managed by dpkg which depends on package-0.0.1?

 rubygems installs package-0.1.0 on its own?  What happens to
 package-0.1.0 managed by dpkg?

 What happens if application-1.0.0 gets packaged for dpkg?
 Should it be handed over from one system to the other?

 Should rubygems packages be hidden from dpkg, let the two
 systems coexist in parallel?

 This situation gets so messy, that some Ruby developers prefer
 to _not_ install ruby via dpkg at all.  And they get mad when
 something in the dependency chain pulls Ruby into the system.

 Marcelo


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



Re: Go (golang) packaging, part 2

2013-01-30 Thread Hilko Bengen
* Michael Stapelberg:

 Hilko Bengen ben...@debian.org writes:
 This is a pity for those of us who don't really subscribe to get
 everything from github as needed model of distributing software.
 Yes, but at the same time, it makes Go much more consistent across
 multiple platforms.

Apparently, upstream's idea about the role of library code does not
really match the ideas that have been built into Debian and other Linux
distributions. This has happened before: Ruby (1.8, 1.9, ironruby,
rubinius, etc.), Java (we have multiple JRE implementations, Maven),
even Perl (perlbrew, local::lib, etc.) and will happen again.

This in itself is not a problem. We jsut have to figure out where the
diverging ideas are enscribed (I guess: primarily the go tool that was
introduced with Go 1.0) and see if we can tweak them to a compromise
that does not cause surprise and confusion.

 Since one of the stated goals of the Go language and also the golang
 compiler are fast builds: How about using the Emacs / Common-Lisp /
 Python approach: Ship only source files in the .deb packages and build
 object files during post-install?
 What advantage would that have? It won’t change the fact that we will
 only distribute Go libraries for building Debian binary packages.

Architecture: all packages.

 How does gccgo fit into this picture, apart from the problem that object
 files generated using gccgo are not compatible with those generated
 using golang-go?
 I tried to explain that one cannot use gccgo to create dynamically
 linked shared libraries from Go libraries. At least not at the moment.
 All it can do is dynamically linked executables.

I drew a different conclusion from Ian's messages the thread you
mentioned (see the quotes below). Apparently, one *can* build shared
libraries using gccgo, but they are not currently usable using dlopen().
My impression was that this means that regular use of shared libraries
*is* possible with gccgo. And, indeed, my attempts at building
codesearch using gccgo was sucessful -- with the sparse, index, and
regexp packages compiled as shared libraries.

Ian just recommends against using shared libraries pretty much for
consistency reasons.

Cheers
-Hilko

* Ian Lance Taylor:
 The gccgo compiler is just like gcc.  To build a shared library:

 gccgo -shared -o lib.so file.go

 There is no way to use the go tool to build a shared library.

(http://article.gmane.org/gmane.comp.lang.go.general/81686)

* Ian Lance Taylor:
 When using gccgo you can create and use shared libraries.  Loading new
 code via dlopen doesn't really work; the Go initialization code for
 the dlopen'ed shared library will not be run.

(http://article.gmane.org/gmane.comp.lang.go.general/81567)

* Ian Lance Taylor:
 I don't really recommend providing packages as shared libraries even
 when using gccgo, it's not what Go programmers expect.

(http://article.gmane.org/gmane.comp.lang.go.general/81687)


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87sj5iaj9e@msgid.hilluzination.de



Re: Go (golang) packaging, part 2

2013-01-30 Thread Hilko Bengen
* Wouter Verhelst:

 On Tue, Jan 29, 2013 at 08:25:38AM +0100, Michael Stapelberg wrote:
 Hi Hilko,
 
 Hilko Bengen ben...@debian.org writes:
  This is a pity for those of us who don't really subscribe to get
  everything from github as needed model of distributing software.
 Yes, but at the same time, it makes Go much more consistent across
 multiple platforms.

 consistency across multiple platforms has been claimed as a benefit
 for allowing gem update --system to replace half of the ruby binary
 package, amongst other things. It wasn't a good argument then, and it
 isn't a good argument now.

I think that Consistency across multiple platforms can be a useful
argument. But if either upstream's or the distribution's view of How
Things Ought To Work are ignored for the sake of consistency, something
has gone wrong. (Which is my impression of what happened with Ruby.)

 The problem with having a language-specific get software command is
 that it introduces yet another way to get at software. There are many
 reasons why that's a bad idea, including, but not limited to: [...]

On the other hand it gives users the power to get things done, without
having to care how they can build proper distro packages.

People expect upstream's get software command to Just Work, just as
they expect ./configure  make  sudo make install or perl
Makefile.PL  make  make test  sudo make install to Just Work. In
my experience autoconf and perl-based build systems usually don't write
all over the parts of the system that dpkg is responsible for -- they
put their stuff into /usr/local and I can even override that using
documented environment variables or command line parameters.

This is exactly the kind of behavior I would expect when running go
install on a Debian system. It should be useful as intended by its
authors but leave certain parts of the system alone that are off-limits
by convention.

Cheers,
-Hilko


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87ehh2ahtn@msgid.hilluzination.de



Ruby community and Debian (was: Go (golang) packaging, part 2)

2013-01-30 Thread Marc Haber
On Tue, 29 Jan 2013 22:57:03 +0100, Michael Stapelberg
stapelb...@debian.org wrote:
Wouter Verhelst wou...@debian.org writes:
 consistency across multiple platforms has been claimed as a benefit
 for allowing gem update --system to replace half of the ruby binary
 package, amongst other things. It wasn't a good argument then, and it
 isn't a good argument now.
I am not familiar with the Ruby situation, I only know that many Ruby
developers seem to be very angry at Debian people. Is there a summary of
the events that I could read?

In my past experience it is the usual case where and upstream and/or
its community takes at as a personal offense when a user is not using
the latest and greatest software version[1] and does not understand
that one might be mandated to use what a third party (here: Debian)
found fit to freeze for a release a year or more ago.

This attitude can be found upon many upstreams communities (for
example, in Open/LibreOffice and KDE), but is even harder with ruby
since ruby packages seem to be so small that there are so many of
them, that they have something resembling a release process for a
rubygems bundle package, introducing the time lag caused by releases
once for them and once for us, and that our packaging of their softwae
was done in a way that ruby packages are the biggest nightmare to
backport that I have ever seen[2] (gem2deb, 'nuff said).

I do sincerely hope that most of those things will be history when
wheezy is released.

Greetings
Marc

[1] up to what, you're only using what we released last week? Please
upgrade to our git head and check back.
[2] I think it was between woody and sarge when more and more package
began to rely on a debhelper version that wasn't backportable because
it used a perl language construct that was not available in the past's
stable perl
-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1u0xwu-0004cg...@swivel.zugschlus.de



Bug#699347: ITP: stdsyslog -- tool to log a program's output to the system log

2013-01-30 Thread Peter Pentchev
Package: wnpp
Severity: wishlist
Owner: Peter Pentchev r...@ringlet.net

* Package name: stdsyslog
  Version : 0.02
  Upstream Author : Peter Pentchev r...@ringlet.net
* URL : http://devel.ringlet.net/sysutils/stdsyslog/
* License : BSD-2
  Programming Lang: C
  Description : tool to log a program's output to the system log

The stdsyslog utility executes a program, reads everything that it
outputs to a set of file descriptors (by default the standard output and
standard error streams) and logs it to the system log.  Its command-line
options include specifications of the syslog facility and the priorities
that messages on the various file descriptors should be logged as.

--- cut description, start a bit of comment on the reason for this

Yes, I am indeed aware that this may be accomplished using logger(1) and
skillful output-redirection-to-a-program in some shells, but somehow:

  stdsyslog -f local4 sprog args

...strikes me as a bit easier to type than:

  sprog args (logger -p local4.info) 2(logger -p local4.err)

...not to mention a bit more portable and also easier to use in
automated program invocations :)

G'luck,
Peter


signature.asc
Description: Digital signature


Re: Go (golang) packaging, part 2

2013-01-30 Thread Michael Stapelberg
Hi Hilko,

Hilko Bengen ben...@debian.org writes:
 I drew a different conclusion from Ian's messages the thread you
 mentioned (see the quotes below). Apparently, one *can* build shared
 libraries using gccgo, but they are not currently usable using dlopen().
 My impression was that this means that regular use of shared libraries
 *is* possible with gccgo. And, indeed, my attempts at building
 codesearch using gccgo was sucessful -- with the sparse, index, and
 regexp packages compiled as shared libraries.
Can you please list the full instructions you did to accomplish building
sparse/index/regexp as a shared library?

I have asked numerous times in various places and nobody could give me
instructions on how to build shared libraries.

-- 
Best regards,
Michael


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



Fwd: HBA QLogic en Debian

2013-01-30 Thread Tony Peña
tranquilo.. metele sin lio
esta en el non-free aqui se usa . es el paquete firmware-qlogic

saludos


El 30 de enero de 2013 10:42, andres cespedes andres172...@gmail.comescribió:

Buenos días a tod@s,

 Quisiera consultar con todos ustedes si alguno ha llegado a implementar
 Tarjetas HBA QLogic en Debian Stable ya que estuve buscando y pude ver que
 estaban soportadas oficialmente en RedHat y Suse y en algunos blogs vi la
 instalación y el uso de alien http://wiki.debian.org/Alien, lo cual me
 hace dudar de su correcto funcionamiento. Por ello quisiera tener certeza
 que Debian soporta algún modelo QLogic para poder realizar la compra de
 esta.

 Muchas gracias.

 --
 Cordialmente,
 Administrador de Redes de Computo
 Linux User Number 497825




-- 
Antonio Peña
Secure email with PGP 0x8B021001 available at http://pgp.mit.edu
 Fingerprint: 74E6 2974 B090 366D CE71  7BB2 6476 FA09 8B02 1001



-- 
Antonio Peña
Secure email with PGP 0x8B021001 available at http://pgp.mit.edu
 Fingerprint: 74E6 2974 B090 366D CE71  7BB2 6476 FA09 8B02 1001


Re: HBA QLogic en Debian

2013-01-30 Thread Tony Peña
tranquilo.. metele sin lio
esta en el non-free aqui se usa . es el paquete firmware-qlogic

saludos


El 30 de enero de 2013 10:42, andres cespedes andres172...@gmail.comescribió:

 Buenos días a tod@s,

 Quisiera consultar con todos ustedes si alguno ha llegado a implementar
 Tarjetas HBA QLogic en Debian Stable ya que estuve buscando y pude ver que
 estaban soportadas oficialmente en RedHat y Suse y en algunos blogs vi la
 instalación y el uso de alien http://wiki.debian.org/Alien, lo cual me
 hace dudar de su correcto funcionamiento. Por ello quisiera tener certeza
 que Debian soporta algún modelo QLogic para poder realizar la compra de
 esta.

 Muchas gracias.

 --
 Cordialmente,
 Administrador de Redes de Computo
 Linux User Number 497825




-- 
Antonio Peña
Secure email with PGP 0x8B021001 available at http://pgp.mit.edu
 Fingerprint: 74E6 2974 B090 366D CE71  7BB2 6476 FA09 8B02 1001


Re: Go (golang) packaging, part 2

2013-01-30 Thread Steve McIntyre
Marcelo wrote:

 This situation gets so messy, that some Ruby developers prefer
 to _not_ install ruby via dpkg at all.  And they get mad when
 something in the dependency chain pulls Ruby into the system.

To be fair, it's similar in reverse. Some Debian developers prefer to
_not_ install Ruby *at all*. Given how utterly awful the internals of
the language implementation are, I'd happily support dropping Ruby
from Debian altogether. Maybe that's just me...

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
We're the technical experts.  We were hired so that management could
 ignore our recommendations and tell us how to do our jobs.  -- Mike Andrews


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



Re: Bootstrappable Debian - proposal of needed changes

2013-01-30 Thread Wookey
+++ Michael Biebl [2013-01-25 15:31 +0100]:
 Hi,
 
 looking over your proposal, I was missing a few things (sorry if this
 was mentioned in one of the replies, I've only skimmed over the thread).
 
 a/ It's good practice to explicitly enable/disable features via
 configure switches, to have reliable build results in tainted build
 environments. What's the plan to annotate such optional features and
 manage the configure switches in debian/rules?

Build profiles can be viewed as being (to a large degree) a mapping of
configure options into debian packaging. So we get some of the
flexibility that configure provides exposed in the packaging.

We don't want the feature that stuff will get randomly skipped if
support is not found, just the ability to turn some things off for
reasons like bootstraping and crossbuilding, and potentially embedding
and other downstream distro variation. As you say: explicit
enabled/disable is good, because determinsitic builds are wanted.

So a typical rules snippet looks like this: 

ifeq ($(DEB_STAGE),stage1)
DH_OPTIONS += -Nlibdb5.1-sql
  CONFIGURE_SWITCHES += --disable-sql
else
  CONFIGURE_SWITCHES += --enable-sql
fi

so that explicitly sets whether to enable the sql bindings and skips
building the package if not. 

 b/ You mentioned documentation (gtk-doc) as optional build dependency.
 Same packages do not ship the documentation in a separate binary
 package, but as part of the -dev package. Is there an idea to annotate
 optional files in .install files, so dh_install will not fail if files
 are missing when building certain profiles or is there an alternative
 idea how to handle this?

No, there is no plan for this. Anything is possible in rules files. On
some packages we can turn off -fail-missing to avoid build failures.
Ultiately you can do what you like in the packaging, but it helps a
lot if it's neat and not intrusive, which is why -Npackage in
debhelper options is great.

I'm not aware of a nice neat way of using a different .install file,
or concatenating segments of .install files but it would be nice to
have a declarative way of specifying this. It has not been a
significant issue so far, but I expect you are right that there will
places where it's pretty ugly. 

Wookey
-- 
Principal hats:  Linaro, Emdebian, Wookware, Balloonboard, ARM
http://wookware.org/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130130165517.gr5...@stoneboat.aleph1.co.uk



Re: Bootstrappable Debian - proposal of needed changes

2013-01-30 Thread Wookey
+++ Ian Jackson [2013-01-16 13:50 +]:

  * The concrete syntax in build-depends should not use   but rather
reuse the architecture qualification syntax.

I have just been told of a specific reason to avoid using ' ' :
DEP-11 proposes to use ' ' for Component metadata in binary packages 
http://wiki.debian.org/DEP-11


Should this profile stuff be written up as a 'DEP'? 

I think I missed the creation of DEPs somewhere along the way, but I
keep seeing mentions of them. Aha: 'Debian Enhancement Proposals'. I
guess that fits the bill. 


Just today we got patches to give apt (build-dep) profile support using 
-o APT::Build-Profile and sbuild to use that, so the missing piece to
enable
sbuild --host arch --profile profile package_version

arrived. Which means that a bootstrap up to a buildd chroot can
consist of nothing but a series of sbuild commands.

(This doesn't quite work yet due to a a few missing bits of
multiarchness, and a few packages that don't cross successfully yet
(most notably perl).

See my update at FOSDEM, and we'll do a summary from this thread in
the not-too-distant.

Wookey
-- 
Principal hats:  Linaro, Emdebian, Wookware, Balloonboard, ARM
http://wookware.org/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130130172713.gt5...@stoneboat.aleph1.co.uk



Re: Go (golang) packaging, part 2

2013-01-30 Thread Marc Haber
On Wed, 30 Jan 2013 16:25:12 +, Steve McIntyre st...@einval.com
wrote:
To be fair, it's similar in reverse. Some Debian developers prefer to
_not_ install Ruby *at all*. Given how utterly awful the internals of
the language implementation are, I'd happily support dropping Ruby
from Debian altogether. Maybe that's just me...

Ruby is actually a pretty nice language, and it is needed by the two
major Configuration Management tools that are both widely used in
business, puppet and chef.

I have never looked into Ruby's internals, aber I happen to like its
outside.

Greetings
Marc
-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1u0dsc-0005y5...@swivel.zugschlus.de



Re: Go (golang) packaging, part 2

2013-01-30 Thread Thorsten Glaser
Paul Wise pabs at debian.org writes:

 On Wed, Jan 30, 2013 at 11:15 AM, Chow Loong Jin wrote:
 
  Having multiple package managers which don't know about each other on a 
system
  is evil™ (but in some cases, can be managed properly).

Meh, it’s evil, period.

 Some integration between dpkg and domain-specific package managers
 could be useful. With DEP-11, we could have 'cpan install Foo::Bar'
 tell you Foo::Bar is available in your distribution's package
 manager, you can install it with apt-get install libfoo-bar-perl..

That would be nice but not need integration, just replacement of
cpan with a small script ;-)

And, of course, having all of CPAN packaged properly. Which comes to…

 Also, GoboLinux apparently have a more advanced system for integration
 between their package manager and others like rubygems/cpan.

… something like that. Not quite. I don’t think it’s worth the pain;
it may be manageable for Perl, and maybe PEAR, and with even bigger
pain maybe even pypi, but not for Ruby and similarily hostile upstreams.

My co-developer (on the MirBSD side) benz has written a script that
almost automates creation of a port (source package) from/for a CPAN:
http://www.slideshare.net/bsiegert/painless-perl-ports-with-cpan2port
(It looks even MacPorts has adopted it!)

Of course, it needs some manual review (and someone’d have to convert
its output to Debian source packages, or merge it into the already
existing dh-make-perl which also somewhat worked when I tried it), but
it would make achieving this goal possible (and let running dpkg require
128 MiB of RAM or so, to fit the list of packages into it, I guess, but
even those Amigas have that).

bye,
//mirabilos (with his Synergy hat)
PS: Steve is not alone in thinking to kick it…


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/loom.20130130t221150-...@post.gmane.org



Re: Ruby community and Debian

2013-01-30 Thread Thorsten Glaser
Marc Haber mh+debian-devel at zugschlus.de writes:

 In my past experience it is the usual case where and upstream and/or
 its community takes at as a personal offense when a user is not using
 the latest and greatest software version[1] and does not understand

I think the Ruby case involved more:

“What, you’re not running version x of the dependency y but a newer
one? Ignore the fact that version x is vulnerable, because that’s
the one you *must* be using for my code! Ah, and no, the dependency
of package z of version x+1 of package y is not a problem, because
with out cool package manager you can install them in parallel!”

(Somewhat remembering and paraphrasing what I read on the Planet.)

bye,
//mirabilos


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/loom.20130130t221904-...@post.gmane.org



Re: Go (golang) packaging, part 2

2013-01-30 Thread Russ Allbery
Thorsten Glaser t...@debian.org writes:

 My co-developer (on the MirBSD side) benz has written a script that
 almost automates creation of a port (source package) from/for a CPAN:
 http://www.slideshare.net/bsiegert/painless-perl-ports-with-cpan2port
 (It looks even MacPorts has adopted it!)

 Of course, it needs some manual review (and someone’d have to convert
 its output to Debian source packages, or merge it into the already
 existing dh-make-perl which also somewhat worked when I tried it), but
 it would make achieving this goal possible (and let running dpkg require
 128 MiB of RAM or so, to fit the list of packages into it, I guess, but
 even those Amigas have that).

Do you think there's something substantial missing from the existing
Debian packaging of Perl modules?  I'm quite happy with what Debian is
doing already and am somewhat dubious there is any point in changing
anything.  Most of what's available in CPAN that isn't already packaged is
either new or quite obscure, and much of what's available but obscure
probably *shouldn't* be packaged: it's buggy, abandoned, an inferior
version of something that's already packaged, or otherwise just not of
general interest.

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


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



Re: Issue 9 (golang) packaging, part 2

2013-01-30 Thread Thorsten Glaser
Russ Allbery rra at debian.org writes:

 Do you think there's something substantial missing from the existing
 Debian packaging of Perl modules?  I'm quite happy with what Debian is

(Oops. Forgot to fix a spelling mistake in the Subject in my
first reply. It’s not Go!) (Hello GMane, no I was *not* top-posting…
but apparently I have to move this paragraph down.)

I’m not versed enough in the ways of Perl to be able to comment
on this. I meant no slight in any way to the existing packages.
I was just speculating on missing things that need to be packaged…

 anything.  Most of what's available in CPAN that isn't already packaged is
 either new or quite obscure, and much of what's available but obscure
 probably *shouldn't* be packaged: it's buggy, abandoned, an inferior
 version of something that's already packaged, or otherwise just not of
 general interest.

… but apparently, there’s no need to do anything more ;-)

That is, of course, even better. Then, just use the packaged things.

(Side note: not that I like PHP even one bit, but at least it doesn’t
make actually packaging its thingies hard. With my FusionForge developer
hat on, we generally have everything needed already in Debian or can
easily add it, so that we can really say what the DDs in the upstream
team prefer: if it’s not in Debian, it doesn’t exist.)

bye,
//mirabilos

PS: Please do not call golang “Go”, it’s a hostile name take-over that
could have easily been fixed (instead of becoming hostile; I’m sure
it was just an oversight initially) when Issue 9 was filed. I follow
the tradition to call the language “Issue 9” in reference to both that
bug and Plan 9 instead, but “golang” is probably fine. Or “go-nuts”…


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/loom.20130130t224109-...@post.gmane.org



Re: Go (golang) packaging, part 2

2013-01-30 Thread Игорь Пашев
2013/1/30 Marc Haber mh+debian-de...@zugschlus.de:
 On Wed, 30 Jan 2013 16:25:12 +, Steve McIntyre st...@einval.com
 wrote:
To be fair, it's similar in reverse. Some Debian developers prefer to
_not_ install Ruby *at all*. Given how utterly awful the internals of
the language implementation are, I'd happily support dropping Ruby
from Debian altogether. Maybe that's just me...

 Ruby is actually a pretty nice language, and it is needed by the two
 major Configuration Management tools that are both widely used in
 business, puppet and chef.

Don't forget vim-addon-manager!


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



Re: Bug#698656: ITP: adequate -- Debian package quality testing tool

2013-01-30 Thread Jakub Wilk

* Jakub Wilk jw...@debian.org, 2013-01-21, 22:17:

adequate checks quality of installed packages.

can it be used on chroots without being installed in the chroot?
like
  adequate --root=/some/chroot mypkg


You can't do that currently, and I'm afraid it won't be easy to 
implement.


adequate 0.4 has the --root option, but it's implemented by 
chroot(2)ing, so it's only slightly better than this hack:



cat /usr/bin/adequate | chroot /some/chroot perl - mypkg


--
Jakub Wilk


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



Re: Go (golang) packaging, part 2

2013-01-30 Thread Lennart Sorensen
On Wed, Jan 30, 2013 at 09:16:59PM +, Thorsten Glaser wrote:
 Meh, it’s evil, period.

Absolutely.  As a user I have a nice package management system that I
know how to use and which works well.  I don't need another one.

It is not the job of a language developer to invent yet another bloody
package distribution and installation system.  Just because windows
doesn't have a decent way to handle software installations doesn't mean
other systems don't know how to do it well.

 That would be nice but not need integration, just replacement of
 cpan with a small script ;-)
 
 And, of course, having all of CPAN packaged properly. Which comes to…

I think having the useful bits done is fine, and dh-make-perl is pretty
good for the few times you want to try something that isn't already
packaged (and probably just long enough to find out it wasn't worth
using in the first place).

 … something like that. Not quite. I don’t think it’s worth the pain;
 it may be manageable for Perl, and maybe PEAR, and with even bigger
 pain maybe even pypi, but not for Ruby and similarily hostile upstreams.

Much as I like PHP, I really hate PEAR.  I don't want another add on
system to manage.

 My co-developer (on the MirBSD side) benz has written a script that
 almost automates creation of a port (source package) from/for a CPAN:
 http://www.slideshare.net/bsiegert/painless-perl-ports-with-cpan2port
 (It looks even MacPorts has adopted it!)
 
 Of course, it needs some manual review (and someone’d have to convert
 its output to Debian source packages, or merge it into the already
 existing dh-make-perl which also somewhat worked when I tried it), but
 it would make achieving this goal possible (and let running dpkg require
 128 MiB of RAM or so, to fit the list of packages into it, I guess, but
 even those Amigas have that).

Poor old Amigas.  Not that any of mine have enough CPU to run linux. :(

-- 
Len Sorensen


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130130234635.ga1...@csclub.uwaterloo.ca



Re: Go (golang) packaging, part 2

2013-01-30 Thread Russ Allbery
Lennart Sorensen lsore...@csclub.uwaterloo.ca writes:

 Absolutely.  As a user I have a nice package management system that I
 know how to use and which works well.  I don't need another one.

 It is not the job of a language developer to invent yet another bloody
 package distribution and installation system.  Just because windows
 doesn't have a decent way to handle software installations doesn't mean
 other systems don't know how to do it well.

My upstream experience is that people generally use the package management
properties of things like CPAN in two main cases: when using operating
systems with deficient package management or scope of packages, or when
using old systems that can't be updated for some reason.

CPAN is hugely popular with Solaris admins, for example, because good luck
finding real Solaris packages of most of the things you care about.  Red
Hat is similar; a lot of common Perl modules are packaged, but far fewer
than are packaged for Debian, and it's common to need something that isn't
part of the base Red Hat distribution.

The problem with the general feeling that they're inferior versions of
real package management is that the above use cases mean that the
packaging components of something like CPAN aren't ever going to go away,
since upstream will continue to support users on those platforms, or users
who are on lenny and refuse to upgrade for some reason.  And since those
components exist and people get used to using them to get their jobs done
on Red Hat, they'll naturally use them on Debian as well without being
aware there are better alternatives.  Or when they're on squeeze and want
to do some sort of cutting-edge development.

Thankfully, at least with Perl, they co-exist fairly well, although people
get bitten by having outdated versions of things installed in /usr/local
from an old CPAN run that should have been, but weren't, supplanted by
better versions available through the package manager.

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


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



Re: Go (golang) packaging, part 2

2013-01-30 Thread Chow Loong Jin
On 31/01/2013 05:16, Thorsten Glaser wrote:
 On Wed, Jan 30, 2013 at 11:15 AM, Chow Loong Jin wrote:
  
   Having multiple package managers which don't know about each other on a 
 system
   is evil™ (but in some cases, can be managed properly).
 Meh, it’s evil, period.
 

Well, really, the manageable case I was talking about was pip/easy_install
inside a Python virtualenv, which is basically a Python installation that is
kept completely distinct from the system's installation and doesn't touch
anything dpkg is supposed to be managing.

It's useful for installing crap from PyPI in a more or less standard,
distro-agnostic manner.

-- 
Kind regards,
Loong Jin



signature.asc
Description: OpenPGP digital signature


Bug#699403: ITP: xorg-gtest -- X.Org dummy testing environment for Google Test

2013-01-30 Thread Stephen M. Webb
Package: wnpp
Severity: wishlist
Owner: Stephen M. Webb stephen.w...@bregmasoft.ca

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

* Package name: xorg-gtest
  Version : 0.7.0
  Upstream Author : Peter Hutterer peter.hutte...@who-t.net
* URL : http://cgit.freedesktop.org/xorg/test/xorg-gtest/
* License : MIT/X
  Programming Lang: C++
  Description : X.Org dummy testing environment for Google Test

Provides a Google test environment for starting and stopping a dummy X server
for headless testing purposes.



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

iQIcBAEBCAAGBQJRCddvAAoJEAoP+EW32zQnyhkQAJ91an5owjjHurpDghmbHj/c
LxtvkIUXMW8aLV9HoWVhuOufTz7pjFwWj6gcbrDPWLgspAuEq6tpt84JoFv3IW27
9NCaBnpzJz+GhO74MkmcJdYwLk/IC74JfiTRXO64AeDlESTBlBnLcx8SI+kSZdx+
izqoyhCg7zsgTSaPSuAeSZq0l3iOD4+XvUIpd24Ji9WyIVVezqGdylM8r5tdKydH
r2wwSf9Qd5LJYXe6R85HWZzZ/Y1Zu6i9iqeNKKh5LIjDNHs7mW0P23QMSNO3yt+F
vtK+KN0+9z+8si5pEbj20g+tDDpBoy2a9h1q5zUhbF1I7YlDKRz8GZhRQa39X+uS
dvuvLiybonIzabw7GaJDiYMVT7JzGGoWpO5rbofwFqXnFQIJk7ew0uI0hJxjmXqn
LB8wrmRezEvbKlB9GW6YTWrGd/gxC66M/W3sMTmhvYYQoXONgkoY96Z6S1W243Fj
SXukw1nvUCjjL8tGL08fLBS3Q6kYbN8y9eFisZ7QSwK05kj1EvosdY/Jlmk8Aj0/
UkK8JFTD0Ec83ngIEk6Qkuk20W+USIgGQYTSKpi8GJKrcmMS6ldpgIzFyFR+kBTm
83lCfalOLptJBP6t2JktYrVFPl98t/WIsHKYDfg5C/d9kg9t+lBtCNSFWcc08Ayp
Ogc2zfyTU9H4qHAr8huM
=02CA
-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: 
http://lists.debian.org/20130131023111.1688.6434.reportbug@localhost6.localdomain6



bash readline

2013-01-30 Thread Jack Andrews
hi dd,

i really like the readline in bash - it seems bash is vi complete in vi mode.

now, i haven't looked closely, but i think the good vi mode is a patch
on (bash?) readline in debian?
in centos, i can't df; and delete up to next semicolon.

but on ubu^H^H^Hdebian, rlwrap uses the vanilla readline and it's
really annoying that i can't get the same line editing features with
rlwrap (and, i expect, readline).

what are my options?  patch readline?


ta, jack.


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



Re: Ruby community and Debian

2013-01-30 Thread Antonio Terceiro
On Wed, Jan 30, 2013 at 09:21:08PM +, Thorsten Glaser wrote:
 Marc Haber mh+debian-devel at zugschlus.de writes:
 
  In my past experience it is the usual case where and upstream and/or
  its community takes at as a personal offense when a user is not using
  the latest and greatest software version[1] and does not understand
 
 I think the Ruby case involved more:
 
 “What, you’re not running version x of the dependency y but a newer
 one? Ignore the fact that version x is vulnerable, because that’s
 the one you *must* be using for my code! Ah, and no, the dependency
 of package z of version x+1 of package y is not a problem, because
 with out cool package manager you can install them in parallel!”

That was a bit of both issue, but that happens in pretty much every
language community out there.

I just tried installing some cool thing in Perl, and installing it from
CPAN into $HOME blew up because of incompatibilities with some Perl
package installed via dpkg, and could only test the said package when I
tried installing it from CPAN in a clean chroot.

There is always impedance mismatch between those who want to build
stable, dependable, predictable systems and those who want to live in
the bleeding edge, and as said elsewhere in this thread, that's not
exclusive to the Ruby people.

IMO the noise caused by the Ruby situation was amplified by the
concurrent development of two different of factors:

- a lot of leading (and very vocal) Ruby developers were using a system
  that had no proper package management (MacOS X), so they didn't care
  enough to understand the requirements from our side. But the Ruby
  packages in Debian implemented those requirements.

- that also happened during the boom of Ruby development outside of
  Japan -- skyrocketed by the boom of Rails -- where everything was new
  and everyone was experimenting like crazy. That led to the
  lack-of-stables-API and let's-break-our-reverse-dependencies
  bandwagons.

Today, the situation is improving from our side, if not by discussing
the relationship, at least by writing the proper code. With Rubygems
moving into the core -- what makes sense, because we cannot fight
against the fact that several users of the language won't have proper
package managers provided by their OS, we had to deal with it.  As a
sort of technology preview, in Wheezy one will be able to have Rubygems
detect dpkg-installed packages¹.

¹ http://packages.debian.org/rubygems-integration

Also, switching the default Ruby version on a per-user/pre-project² or
even on a per-system² basis was made easier.

² http://packages.debian.org/rbenv
³ update-alternatives --config ruby

From the Ruby community side the situation is a lot better. You will
even see the occasional don't you break a stable API rant within the
Ruby community.

-- 
Antonio Terceiro terce...@debian.org


signature.asc
Description: Digital signature


Re: Go (golang) packaging, part 2

2013-01-30 Thread Jean-Christophe Dubacq
On 30/01/2013 22:23, Игорь Пашев wrote:
 2013/1/30 Marc Haber mh+debian-de...@zugschlus.de:
 On Wed, 30 Jan 2013 16:25:12 +, Steve McIntyre st...@einval.com
 wrote:
 To be fair, it's similar in reverse. Some Debian developers prefer to
 _not_ install Ruby *at all*. Given how utterly awful the internals of
 the language implementation are, I'd happily support dropping Ruby
 from Debian altogether. Maybe that's just me...

 Ruby is actually a pretty nice language, and it is needed by the two
 major Configuration Management tools that are both widely used in
 business, puppet and chef.
 
 Don't forget vim-addon-manager!
 
 
Don't forget package.el for emacs!

-- 
Jean-Christophe Dubacq



signature.asc
Description: OpenPGP digital signature


Bug#699411: ITP: python-statsdpy -- event based statsd implementation

2013-01-30 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand z...@debian.org

* Package name: python-statsdpy
  Version : 0.0.10
  Upstream Author : Florian Hines fhi...@rackspace.com
* URL : https://github.com/pandemicsyn/statsdpy
* License : Presumably Apache-2 (currently checking with upstream)
  Programming Lang: Python
  Description : event based statsd implementation

 Statsdpy is an event based statsd implementation written in Python using
 eventlet with support for reporting to graphite using the pickle protocol.
 Statsdpy supports counters, timers, gauges, combined events and sampling.


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



Re: Bug#699411: ITP: python-statsdpy -- event based statsd implementation

2013-01-30 Thread Thomas Goirand
On 01/31/2013 02:45 PM, Thomas Goirand wrote:
 Package: wnpp
 Severity: wishlist
 Owner: Thomas Goirand z...@debian.org

 * Package name: python-statsdpy
   Version : 0.0.10
   Upstream Author : Florian Hines fhi...@rackspace.com
 * URL : https://github.com/pandemicsyn/statsdpy
 * License : Presumably Apache-2 (currently checking with upstream)
   Programming Lang: Python
   Description : event based statsd implementation

  Statsdpy is an event based statsd implementation written in Python using
  eventlet with support for reporting to graphite using the pickle protocol.
  Statsdpy supports counters, timers, gauges, combined events and sampling.


FYI, I think I'll call the package statsdpy and not python-statspy,
because that's not a python module, but a server thing...

Still pending words from upstream about licensing though.

Thomas


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



Accepted shedskin 0.9.3-0~exp1 (source all)

2013-01-30 Thread Paul Boddie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 29 Jan 2013 23:24:04 +0100
Source: shedskin
Binary: shedskin
Architecture: source all
Version: 0.9.3-0~exp1
Distribution: experimental
Urgency: low
Maintainer: Paul Boddie p...@boddie.org.uk
Changed-By: Paul Boddie p...@boddie.org.uk
Description: 
 shedskin   - Python-to-C++ compiler designed to speed up Python programs
Changes: 
 shedskin (0.9.3-0~exp1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 3389ba468a1f65192114f70ef0e512314e51ae18 1247 shedskin_0.9.3-0~exp1.dsc
 4a31aed622322fca264968540b6846998862f64d 353152 shedskin_0.9.3.orig.tar.gz
 7ec1cd53c7decdb0938ef09ae9511f02bb32fc82 3585 
shedskin_0.9.3-0~exp1.debian.tar.gz
 d7f7391e3d8867576da866fc8c4e95736072a55d 254164 shedskin_0.9.3-0~exp1_all.deb
Checksums-Sha256: 
 f82c7f928a92a54b7488f27e97ebcce64715125504d99584d57fdeaa2eaedb73 1247 
shedskin_0.9.3-0~exp1.dsc
 cd81f5af25a5937ecca139ab2877d80fbc29020d34c97e65d0590b993f11918d 353152 
shedskin_0.9.3.orig.tar.gz
 ba028cf64cf7ead8a85cb38f9edadb48a167e289ee610884c99f4921a87712ad 3585 
shedskin_0.9.3-0~exp1.debian.tar.gz
 a47fcfdba907cf7a2d8962bb2d226c8409adb3e073a4148595b8e5df230b9dd8 254164 
shedskin_0.9.3-0~exp1_all.deb
Files: 
 ba2ab27bbd107fa043fcb93f22ae357b 1247 python optional shedskin_0.9.3-0~exp1.dsc
 f41c08f10cb1f4d96813c21bd9f0ccf7 353152 python optional 
shedskin_0.9.3.orig.tar.gz
 28c31c84a50a5decb00d552e207963a6 3585 python optional 
shedskin_0.9.3-0~exp1.debian.tar.gz
 3c052e48a3027f085b9b2b1f75aeca3e 254164 python optional 
shedskin_0.9.3-0~exp1_all.deb

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

iEYEARECAAYFAlEI0skACgkQRqobajv7n7MybgCgmvpNGxDPIrVIaRXLANGMew06
Fv4An2tKmffI4uvOPH+QI1E6VtzFQBhq
=XQj6
-END PGP SIGNATURE-


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



Accepted hevea 2.02-1 (source all)

2013-01-30 Thread Ralf Treinen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 09:50:06 +0100
Source: hevea
Binary: hevea
Architecture: source all
Version: 2.02-1
Distribution: experimental
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 hevea  - translates from LaTeX to HTML, info, or text
Changes: 
 hevea (2.02-1) experimental; urgency=low
 .
   * New upstream release.
   * Standards-Version 3.9.4 (no change)
   * Long package description: drop the phrase concerning the patch replacing
 the default image format since this is no longer true (since version 2.0).
   * Bump build-dependency on ocaml to =3.12, following upstream's README.
Checksums-Sha1: 
 cef159c94e704f43095a67992af6ff3935b3b1b9 1424 hevea_2.02-1.dsc
 06e978f2f47e8d8dc9be7c13208fa707d90faa65 410332 hevea_2.02.orig.tar.gz
 2cc6db14d79db06a6ec91bc0fccb1204f7da7b1c 18246 hevea_2.02-1.debian.tar.gz
 bc73713fef7a8e9ea187269a24d3b5cf0292d7f8 481256 hevea_2.02-1_all.deb
Checksums-Sha256: 
 286e7eea10f674c122b4e32da5118ce865a306a720483e8b2ba5fead4a3ca708 1424 
hevea_2.02-1.dsc
 406683222913713ed3b81c153d1a84c0347f6e49181bb178636877c4f410fd6c 410332 
hevea_2.02.orig.tar.gz
 f450eace0d6bda54f9fa933021cef53fda88d29d94151eb54d9f00459a83b79c 18246 
hevea_2.02-1.debian.tar.gz
 3a60e842a9fa181d2912bf33675d1b381cb4fed4dfe00fa6e95b03571caf5097 481256 
hevea_2.02-1_all.deb
Files: 
 abb81d09f9bc2fd52d39556375207cd7 1424 tex optional hevea_2.02-1.dsc
 b0331fdf123c21ce02f15c890d268306 410332 tex optional hevea_2.02.orig.tar.gz
 12c0c9e2a002186752de9171c0d29fdb 18246 tex optional hevea_2.02-1.debian.tar.gz
 25730673102bf42589bb7ae20d851046 481256 tex optional hevea_2.02-1_all.deb

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

iEYEARECAAYFAlEI4d8ACgkQtzWmSeC6BMGAFQCgxP5MPrWL/fGttr/46DZJWna2
1e0AnjEkLlk6x7w3fA3u4NmX/yjnSXer
=tbaM
-END PGP SIGNATURE-


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



Accepted libmath-mpfr-perl 3.16-1 (source amd64)

2013-01-30 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 20 Dec 2012 22:30:06 -0500
Source: libmath-mpfr-perl
Binary: libmath-mpfr-perl
Architecture: source amd64
Version: 3.16-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Daniel Kahn Gillmor d...@fifthhorseman.net
Description: 
 libmath-mpfr-perl - perl interface to the MPFR (floating point) library.
Closes: 696461
Changes: 
 libmath-mpfr-perl (3.16-1) unstable; urgency=low
 .
   * Initial Release (Closes: #696461)
Checksums-Sha1: 
 9d507b3bea53a50ed03693b62aefb7591d549e5b 2203 libmath-mpfr-perl_3.16-1.dsc
 d2082d4f6b8b6788c9b63465de5df51681123cc9 82135 
libmath-mpfr-perl_3.16.orig.tar.gz
 48fabb85df9ae3803470d4c19dc2b3567efda175 2246 
libmath-mpfr-perl_3.16-1.debian.tar.gz
 9b327638fbc8b4bf9e3587c7da9f360d43e7370b 177432 
libmath-mpfr-perl_3.16-1_amd64.deb
Checksums-Sha256: 
 f10fed99d6083c231b0facaf14d56dcdb8679828126b44da6b949f9b2e736ca3 2203 
libmath-mpfr-perl_3.16-1.dsc
 c76ee149ae4cb9259648f90dfc126089d8e0b3588b00988ce762d805447a6053 82135 
libmath-mpfr-perl_3.16.orig.tar.gz
 eb77c7ce02e6e6307415fd6df186cc66b34ba7b40cce6a965512c6dd2b93ad78 2246 
libmath-mpfr-perl_3.16-1.debian.tar.gz
 c5ab80048b670b69c24570c2e7d204207d5df36598377462feafc02dfe4c1eb4 177432 
libmath-mpfr-perl_3.16-1_amd64.deb
Files: 
 6a4b40324f470232f110c845ed83f246 2203 perl optional 
libmath-mpfr-perl_3.16-1.dsc
 904eda95f922fabc149e3f9326df742e 82135 perl optional 
libmath-mpfr-perl_3.16.orig.tar.gz
 35c12c81e86505fc1e83e1bcf83efec8 2246 perl optional 
libmath-mpfr-perl_3.16-1.debian.tar.gz
 13fec7252d34ac47bb499f6b10962d8a 177432 perl optional 
libmath-mpfr-perl_3.16-1_amd64.deb

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

iQJ8BAEBCgBmBQJQ3Q14XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwRUU1QkU5NzkyODJEODBCOUY3NTQwRjFD
Q0QyRUQ5NEQyMTczOUU5AAoJEMzS7ZTSFznpTQsP/0ySXK4OaJuKHMmLy+Dcm6lW
0ei+a0cyKCjmcxOGbvPjc8VBLR1Ygrj+e1TX7/lpj81n9Iu22HNEbjzMOEAR+/pu
QT1NZVjL1LBiGDwChsMpe268TxSzCi6h1SU2EFOBrWq4Y4sOMT+sutW93XvSXFrr
oVTSrUGRoi5cNhwy9UwE9FFtMsdQO0Plu4roEdXDSGSm0JhiAq6N/tQrFwFRvi51
vYp1ToR5Qf6uZeJdhDbZLKGffxL3u082RcvZ39jtliV3WS4MyDfqTGfjr+JMRHb9
K9z1yBi1YOPcKGI00fuJXaXQZ9bbcc4wl+vzMBbO9Mfb9PKerTHBhhMLV+lOy6vF
X31EK+4K7z4AyyrZm2Rn/9/OJDoTqUIc1ik+U9VbWHTii/+8Up8A3Q1KlPoUynEt
+LnL5J0/qC2TQQk8AVxisNCoQZ49675KAgGjiO02zniACWVb1oSmehwKsrRJwjLD
+o/aZ6mBUwFA3BlVl3jF0OImPDOn9pGy0ZzpqyqGoNaSTYJE9lZl69brPtv2jZE7
Ohhr0m2wd5z99947tcJQA6HLZYv32eCnZmxJ5jmpa4+d7clw7iYcVEe9A+CpS+ta
Lucuucg8oMbXNCCgACPtOlktMpmp8Xr1zOKb8xtMMMLJcz4aSa8JBpmd9VOhkx/7
hhJd+jsCSNRCCiBIep37
=TFkg
-END PGP SIGNATURE-


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



Accepted qemu 1.3.0+dfsg-5exp (source i386 all)

2013-01-30 Thread Michael Tokarev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Jan 2013 15:05:57 +0400
Source: qemu
Binary: qemu qemu-keymaps qemu-system qemu-system-common qemu-system-misc 
qemu-system-arm qemu-system-mips qemu-system-ppc qemu-system-sparc 
qemu-system-x86 qemu-user qemu-user-static qemu-utils qemu-guest-agent qemu-kvm
Architecture: source i386 all
Version: 1.3.0+dfsg-5exp
Distribution: experimental
Urgency: low
Maintainer: Debian QEMU Team pkg-qemu-de...@lists.alioth.debian.org
Changed-By: Michael Tokarev m...@tls.msk.ru
Description: 
 qemu   - fast processor emulator
 qemu-guest-agent - Guest-side qemu-system agent
 qemu-keymaps - QEMU keyboard maps
 qemu-kvm   - QEMU Full virtualization on x86 hardware (transitional package)
 qemu-system - QEMU full system emulation binaries
 qemu-system-arm - QEMU full system emulation binaries (arm)
 qemu-system-common - QEMU full system emulation binaries (common files)
 qemu-system-mips - QEMU full system emulation binaries (mips)
 qemu-system-misc - QEMU full system emulation binaries (miscelaneous)
 qemu-system-ppc - QEMU full system emulation binaries (ppc)
 qemu-system-sparc - QEMU full system emulation binaries (sparc)
 qemu-system-x86 - QEMU full system emulation binaries (x86)
 qemu-user  - QEMU user mode emulation binaries
 qemu-user-static - QEMU user mode emulation binaries (static version)
 qemu-utils - QEMU utilities
Closes: 636000 676959
Changes: 
 qemu (1.3.0+dfsg-5exp) experimental; urgency=low
 .
   * qemu-system-split: split qemu-system into several target-specific packages:
 qemu-system-arm, qemu-system-mips, qemu-system-ppc, qemu-system-sparc,
 qemu-system-x86, and qemu-system-misc, plus qemu-system-common.
 (Closes: #636000)
   * add initial qemu-guest-agent package (just the binary for now,
 no startup script) (Closes: #676959)
   * do not try to install (linux-specific) virtfs-proxy-helper on kfreebsd
   * change order of audio drivers, in particular put pulseaudio (pa) first
   * ship OS-specific qemu-ifup (use trivial ifconfig invocation on kfreebsd)
   * qemu-system replaces qemu-utils due to virtfs-proxy-helper binary
   * chmod +x qemu-ifdown
Checksums-Sha1: 
 0358e874a579d2fff5b680f025e9059efeebfda5 2848 qemu_1.3.0+dfsg-5exp.dsc
 72e2914df53b56825f56fde9c3daa155d1723e04 52180 
qemu_1.3.0+dfsg-5exp.debian.tar.gz
 fa157f22d768b7c46901b7c35876decd9c67e8ca 180856 qemu_1.3.0+dfsg-5exp_i386.deb
 8545992b89b0521767ee53381337032b1026f204 53158 
qemu-keymaps_1.3.0+dfsg-5exp_all.deb
 4810e41ee84bce18739f97e2fb8d47685c1c5731 39584 
qemu-system_1.3.0+dfsg-5exp_i386.deb
 e1580e459f5dc1e7d679a46a66fdcaa0965f7727 180926 
qemu-system-common_1.3.0+dfsg-5exp_i386.deb
 b51f38e0dabe7198f8af3ba3470eea3831523382 14489302 
qemu-system-misc_1.3.0+dfsg-5exp_i386.deb
 e511f7b705efaa0a663e3fef2bb93fcb7e6f2250 1852202 
qemu-system-arm_1.3.0+dfsg-5exp_i386.deb
 fb7290738a134b70fbebff5cf175eccc8f3ec550 6513900 
qemu-system-mips_1.3.0+dfsg-5exp_i386.deb
 a20af1d85ae7018bfb2d2f9e410f546d96f0e8f6 5186568 
qemu-system-ppc_1.3.0+dfsg-5exp_i386.deb
 8e87a3559481a70fb433ca63691d867f9e6f21aa 2540724 
qemu-system-sparc_1.3.0+dfsg-5exp_i386.deb
 49da5ffaa85fa19ecfa438ccab51bdbd1c0bd2c3 3521958 
qemu-system-x86_1.3.0+dfsg-5exp_i386.deb
 7edc04385ca044f609e6b4b4e81f66354671b2b2 8548316 
qemu-user_1.3.0+dfsg-5exp_i386.deb
 e15e015d63bc8e7f30785f6fc2b1ebcd42859673 15962348 
qemu-user-static_1.3.0+dfsg-5exp_i386.deb
 708975b1320651ed75449832f55b11178307bdcd 862332 
qemu-utils_1.3.0+dfsg-5exp_i386.deb
 b7bd174a0c855eea9d96ae553f4b1472cec2150a 128096 
qemu-guest-agent_1.3.0+dfsg-5exp_i386.deb
 c58e1f4bad73ceb30a1203d28cd0fa064c4c81a6 39042 
qemu-kvm_1.3.0+dfsg-5exp_i386.deb
Checksums-Sha256: 
 5ce11b8cffa2a6c38fa9b2048e755e940b73c643c972dd46c3f4c1a3f01379dc 2848 
qemu_1.3.0+dfsg-5exp.dsc
 7aba4a6a1f280c7fa4a94e8c87b5998d2937af4b550be96abe13ab22e550d962 52180 
qemu_1.3.0+dfsg-5exp.debian.tar.gz
 6e081a9189a8d0123baf562aaad0c7bc01faf77cff296678477eb4da81ce5914 180856 
qemu_1.3.0+dfsg-5exp_i386.deb
 76aa9c44f61d88ae62673473394e87dbbe2f96d65b7b10b099963c9b2ac0 53158 
qemu-keymaps_1.3.0+dfsg-5exp_all.deb
 91ebddb700a69d31e57b49699616ba5b922da7b41993cc5697ed6725b5a3f1a8 39584 
qemu-system_1.3.0+dfsg-5exp_i386.deb
 86cc719cec72a84b21fc32e4f2990803cd0e82de2cde1e95fe0192f03766ade7 180926 
qemu-system-common_1.3.0+dfsg-5exp_i386.deb
 ca2ceaba0ec787c27fc8ef0099ebda5403decb0aae43b310ae1b0535156cbe0b 14489302 
qemu-system-misc_1.3.0+dfsg-5exp_i386.deb
 3f9ff4dcf7e2cff9e2813341c6295e2d5013e6ccbac3efa9788dab7b4df5fe23 1852202 
qemu-system-arm_1.3.0+dfsg-5exp_i386.deb
 91d7fcfea0a1d8a0fc94cd1f40c6c831f9a83e7a353a16a1f5dee37512c4dda7 6513900 
qemu-system-mips_1.3.0+dfsg-5exp_i386.deb
 516ecdfc3dde15fd56a995dc8a6c747d6d6e522d58393f6daa42c5afefe420bc 5186568 
qemu-system-ppc_1.3.0+dfsg-5exp_i386.deb
 080b50d990f159eec40fc6c124e7a6cbd51230082b2930fdaa98c3f066ed58f4 2540724 
qemu-system-sparc_1.3.0+dfsg-5exp_i386.deb
 

Accepted libqglviewer 2.3.17-1 (source i386 all)

2013-01-30 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 25 Jan 2013 23:07:30 +0100
Source: libqglviewer
Binary: libqglviewer-dev libqglviewer2 libqglviewer-doc
Architecture: source i386 all
Version: 2.3.17-1
Distribution: experimental
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description: 
 libqglviewer-dev - OpenGL 3D viewer library based on Qt4 - development files
 libqglviewer-doc - OpenGL 3D viewer library - header files and documentation
 libqglviewer2 - OpenGL 3D viewer library based on Qt - runtime library
Closes: 688520 691441 697660
Changes: 
 libqglviewer (2.3.17-1) experimental; urgency=low
 .
   [ Artur R. Czechowski ]
   * New upstream release:
 + uses CONFIG += no_keywords so that the library can be used with Boost
   (LP: #414975) (Closes: #697660)
   * Using upstream name convention: libQGLViewer instead of libqglviewer
   * Don't build Qt3 version anymore
   * Drop no longer needed patches:
 + 01qt3-qt4
 + 04glu-include
 + 99compile-examples
   * Convert to 3.0 (quilt) format
 + remove dpatch from Build-Deps and all calls from debian/rules
 + update patches in debian/patches
 + replace debian/00list with debian/series
 + remove README.source
 + rename remaining patches - remove NN prefix
   * Pass multiarch related LIB_DIR to qmake in debian/rules
   * Lintian cleanup:
 + fix descriptions
 + libqglviewer-qt4-2 depends on ${misc:Depends}
 + build-arch and build-indep provided in debian/rules
   * Update Standards-Version to 3.9.3
 + sort Breaks/Replaces/Provides dependencies for transition
   * Remove transition related stuff. The dev package is libqglviewer-dev,
 the shared library package is libqglviewer2.
   * Headers moved from libqglviewer-dev-common to libqglviewer-dev
   * Documentation moved from libqglviewer-dev-common to new libqglviewer-doc
   * Remove debian/README.Multiflavour and other qt3 related artifacts from
 debian/
   * README.Debian cleanup
 + Merge all *.README.Debian into one file - the content is the same
 + Corrected upstream name in README.Debian
 + Updated URL of homepage
   * Provide upstreams GPL_EXCEPTION file, mention it in copyright one.
   * Tighten shlibs dependencies, as upstream confirmed no ABI compatibility
 is assured between even minor releases
   * Hardening the binaries
 + build depends on dpkg-dev  1.16.1~
 + use dpkg-buildflags
 + pass build flags to qmake
 + don't remove -g option in qmake - new patch: compile-with--g-option
 + add lintian overrides for false positive hardening-no-stackprotector
   warning, see #673112
 .
   [ Anton Gladky ]
   * [4b87fd4] Use compat-level 9.
   * [2a3db76] Clean in rules-file.
   * [51c8386] Use override_dh commands.
   * [b79d40d] Use DEP-5 for copyright-file.
   Remove adding exception in each package.
   * [934a9b8] Remove compile-with--g-option patch. The -g options is 
transmitted
   with other CFLAGS in debian/rules.
   * [173c034] Remove olsolete DM-Upload-Allowed flag.
   * [e694744] Change maintainership to Debian-Science Team. (Closes: #688520)
   * [f0627f1] Remove symlink of copyright-file during upgrade. (Closes: 
#691441)
   * [f79e4f8] Properly remove old binaries.
   * [1a200fe] Bumped Standards-Version: 3.9.4. No changes.
Checksums-Sha1: 
 ed36932f248a63a47e82efa8d4d54edda4f78f20 2223 libqglviewer_2.3.17-1.dsc
 03b1da73bdb07988184c1f5d7c1c360be27b2a0e 2973012 
libqglviewer_2.3.17.orig.tar.gz
 967c64179e7f8b95095f9ad06f36708d3ecefe3e 8618 
libqglviewer_2.3.17-1.debian.tar.gz
 ce60fab59a6a3b8947b925b7ccb84004eced1481 401694 
libqglviewer-dev_2.3.17-1_i386.deb
 1502274ee5bc1c1c54bcdcafea6106dcc81a29b0 262572 libqglviewer2_2.3.17-1_i386.deb
 121e95363c8553337dbc57d1b630243846ce9528 2595158 
libqglviewer-doc_2.3.17-1_all.deb
Checksums-Sha256: 
 f2b9a75082b4aaed269bec9b795688a0c12b48bf0a082f188b6b2c87fa271a83 2223 
libqglviewer_2.3.17-1.dsc
 3319f2ea9a26a4abe8ed8b593f93a390ff4cad1e435406580999faec702a5926 2973012 
libqglviewer_2.3.17.orig.tar.gz
 72542b7fa8f6ac4de492ebe850392db7ea274908ea3f16c6a4db3813a5935115 8618 
libqglviewer_2.3.17-1.debian.tar.gz
 cd4460339fcf101217bee51d84e4570559d090722ed4b2867083fc1d82268c34 401694 
libqglviewer-dev_2.3.17-1_i386.deb
 ad0515d86469f4ee0a878241cb9e08b135636793108acc9aedc912b40ae14bac 262572 
libqglviewer2_2.3.17-1_i386.deb
 243a647d33f60901a4df8b1095923a8d7e9016058d175d18e7b05b9bd6a07792 2595158 
libqglviewer-doc_2.3.17-1_all.deb
Files: 
 706ee0c56b0dcf3aeb6ba35eb4e56ca7 2223 libs optional libqglviewer_2.3.17-1.dsc
 f565ce9fa424c5f51e222dc2712ca42e 2973012 libs optional 
libqglviewer_2.3.17.orig.tar.gz
 adb5b3292151cd5fb832a0c159278eee 8618 libs optional 
libqglviewer_2.3.17-1.debian.tar.gz
 ee48729295998f965264235c917206b8 401694 libdevel optional 
libqglviewer-dev_2.3.17-1_i386.deb
 c6a166c234192873617eb12e3b9ca1b5 

Accepted rygel 0.17.7-1 (source amd64 all)

2013-01-30 Thread Andreas Henriksson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Jan 2013 22:11:21 +0100
Source: rygel
Binary: rygel rygel-dbg rygel-2.0-dev librygel-core-2.0-1 librygel-server-2.0-1 
librygel-renderer-2.0-1 librygel-renderer-gst-2.0-1 rygel-mediathek 
rygel-tracker rygel-gst-renderer rygel-playbin rygel-gst-launch 
rygel-preferences
Architecture: source amd64 all
Version: 0.17.7-1
Distribution: experimental
Urgency: low
Maintainer: Debian Rygel Maintainers ah-ry...@debian.org
Changed-By: Andreas Henriksson andr...@fatal.se
Description: 
 librygel-core-2.0-1 - GNOME UPnP/DLNA services - core library
 librygel-renderer-2.0-1 - GNOME UPnP/DLNA services - renderer library
 librygel-renderer-gst-2.0-1 - GNOME UPnP/DLNA services - renderer library
 librygel-server-2.0-1 - GNOME UPnP/DLNA services - server library
 rygel  - GNOME UPnP/DLNA services
 rygel-2.0-dev - GNOME UPnP/DLNA services - plugin development files
 rygel-dbg  - GNOME UPnP/DLNA services
 rygel-gst-launch - GNOME UPnP/DLNA services - gst-launch plugin
 rygel-gst-renderer - transitional dummy package
 rygel-mediathek - GNOME UPnP/DLNA services - Mediathek plugin
 rygel-playbin - GNOME UPnP/DLNA services - GStreamer Media Renderer plugin
 rygel-preferences - GNOME UPnP/DLNA services - preferences tool
 rygel-tracker - GNOME UPnP/DLNA services - Tracker plugin
Closes: 697989
Changes: 
 rygel (0.17.7-1) experimental; urgency=low
 .
   * Imported Upstream version 0.17.4
   * Update build-dependencies according to configure.ac
 - gupnp-vala dropped, gstreamer 1.0, valac 0.18, and more...
   * Build-depend on libgee-0.8-dev
   * Build-depend on gstreamer plugins to pass tests
   * Switch recommends and depends to GStreamer 1.0
   * make tests non-fatal for now.
 Upstream confirmed the problems and are working on improving
 the tests. Avoid killing the build when they fail for now
   * Add valac-0.18 as alternative to valac (= 0.18)
 - since valac hasn't been updated to vala 0.18 yet.
   * Bump standards version to 3.9.4 to shut lintian up
   * Drop leftover debian/rygel-dvb.install
 - the rygel-dvb package was dropped long time ago
   * Update install paths for new plugins subdirectory
   * Install new rygel engines (gst and simple) files
   * Update triggers for new rygel plugin abi version
   * Rename packages to match new plugin abi version and soname
   * Add librygel-renderer-gst-2.0-1 package
   * Imported Upstream version 0.17.5
   * Imported Upstream version 0.17.5.1
   * Fix typo in rygel-1.0-dev package description (Closes: #697989)
   * Imported Upstream version 0.17.6
   * Imported Upstream version 0.17.7
   * Update gupnp-dlna build dependency to = 0.9.4-2
   * debian/copyright: update copyright holders and years
Checksums-Sha1: 
 5c4ae8a56b68959cb6836d68c11adfe1ce67b59a 2424 rygel_0.17.7-1.dsc
 ff906901ec332b35a285e394ad7984db1994d195 3077836 rygel_0.17.7.orig.tar.xz
 7988cbab63593b7a4a50c88f0f350f6290f8f74a 9580 rygel_0.17.7-1.debian.tar.gz
 abc1bec61d25b9b4fafefddcc5ed0241c36d1d42 894784 rygel_0.17.7-1_amd64.deb
 f7f970eac208cd832026e8208fdf1b380765c4e0 2925776 rygel-dbg_0.17.7-1_amd64.deb
 b389bc787e0b2da5185e4b194502027b2408f5af 604590 
rygel-2.0-dev_0.17.7-1_amd64.deb
 39beea697834af7081522707a1ce38beb6e71b26 454934 
librygel-core-2.0-1_0.17.7-1_amd64.deb
 93feb993078f468814c07b7c8ace705ff38fc6c2 580044 
librygel-server-2.0-1_0.17.7-1_amd64.deb
 ab3d9d5e7f3972d945c081d774954578f04a468e 432422 
librygel-renderer-2.0-1_0.17.7-1_amd64.deb
 2c1e4f72e9b24b55d831f38e7ad9a601fe7bba9a 409338 
librygel-renderer-gst-2.0-1_0.17.7-1_amd64.deb
 f82338423b6146383446d9de71dd698db3361026 416972 
rygel-mediathek_0.17.7-1_amd64.deb
 85b825f503a20cf3fa9008c63406e6aef6dbee74 458766 
rygel-tracker_0.17.7-1_amd64.deb
 062a4f041cf54d0c8c1240987b322a92029048c0 395794 
rygel-gst-renderer_0.17.7-1_all.deb
 03754a4a533ff504bc91f4faf44754ef699159f2 399474 
rygel-playbin_0.17.7-1_amd64.deb
 c47fad2e0414f03b5b3e227cae564601d965fe1f 404408 
rygel-gst-launch_0.17.7-1_amd64.deb
 c73d8b08f9c18817238b4c675ed118c197febdb1 423812 
rygel-preferences_0.17.7-1_amd64.deb
Checksums-Sha256: 
 a161ba15be601a57ab7fd9f58bd72a15f091dbf839bf7402aa45f73562557b00 2424 
rygel_0.17.7-1.dsc
 85e7ff2153c7809deaabc97f2e6ebf7e2458ccdd4a71109a11d320987cac7e49 3077836 
rygel_0.17.7.orig.tar.xz
 732de5fc7e77aa19e3aacd82b750fc36cc74bf0dd28dd464fb885c4cae316bc7 9580 
rygel_0.17.7-1.debian.tar.gz
 3cf79a0393fb979a8c42177f931b7b8b2ad34ea1123008cb278e70cbaa1eaf5d 894784 
rygel_0.17.7-1_amd64.deb
 5784e343bde113c7664d1a74a280f3bbbacec2cb817263fb6b39f1975115e355 2925776 
rygel-dbg_0.17.7-1_amd64.deb
 71c483d658657ad7b35c2a5c760d8a2c9c99be0cfef1f598e2e9f2ffd5151463 604590 
rygel-2.0-dev_0.17.7-1_amd64.deb
 d499689052419f5ed6c9bd1af5ad6f66a9a76c5853b9c8a4e5d44277dc5ec862 454934 
librygel-core-2.0-1_0.17.7-1_amd64.deb
 bae8ea4dd96257dd7a1a08598b3431cdfca60c32da04151b490b0cafa463d127 580044 
librygel-server-2.0-1_0.17.7-1_amd64.deb
 

Accepted libtie-cycle-perl 1.17-1 (source all)

2013-01-30 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 18 Jan 2013 22:01:03 +0100
Source: libtie-cycle-perl
Binary: libtie-cycle-perl
Architecture: source all
Version: 1.17-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libtie-cycle-perl - module for cycling through a list of values via a scalar
Closes: 698457
Changes: 
 libtie-cycle-perl (1.17-1) unstable; urgency=low
 .
   * Initial release (closes: #698457).
Checksums-Sha1: 
 47073a0862bff3253ed111db8d74c765452089b1 2089 libtie-cycle-perl_1.17-1.dsc
 075cfdc32f721ba5821cfeeb9a65e0bb78c7839b 3912 
libtie-cycle-perl_1.17.orig.tar.gz
 ab762b0f28959b7d21f0e9eec8bd8f4380a7482a 1933 
libtie-cycle-perl_1.17-1.debian.tar.gz
 ac1f9739a244f1c91ed98162bbb46215c04365de 7526 libtie-cycle-perl_1.17-1_all.deb
Checksums-Sha256: 
 09aa3b21b2100c20350e113b4240bf7dfcc8825c519b0af7a3ca44f7a98b72b1 2089 
libtie-cycle-perl_1.17-1.dsc
 4c1749cff55a57a670f6f6832b5c32b59ddb660ffc5cb0e60a091810627ae5a5 3912 
libtie-cycle-perl_1.17.orig.tar.gz
 5fb4816ce73ed9de68d24b20274b0005d17e450d9f70e4216ca7d4b4a4418340 1933 
libtie-cycle-perl_1.17-1.debian.tar.gz
 829e075face7a917f731eabe1482aeb138f19fe1258e39a679675675754cda43 7526 
libtie-cycle-perl_1.17-1_all.deb
Files: 
 9ae0509ca016148f36ead8f21702ffe9 2089 perl optional 
libtie-cycle-perl_1.17-1.dsc
 039757b93477da3471342936bb89bfe7 3912 perl optional 
libtie-cycle-perl_1.17.orig.tar.gz
 d67e0397c90ddd7cfee85e01c1847856 1933 perl optional 
libtie-cycle-perl_1.17-1.debian.tar.gz
 5c41a430b1ba84b96584861ce6c74b57 7526 perl optional 
libtie-cycle-perl_1.17-1_all.deb

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

iQIcBAEBCAAGBQJQ+bguAAoJELs6aAGGSaoGKeAP/3Tt0rhtkq1MJ1v8vSOkH1KL
pS9Gt5clZWyqOPy6cm6x+8fra3fzmNzG18kMkKvnk/+EplfgpNKMBj9qsmuC1XGC
bWRHeMuoHfgFWgxwGpuG9tGcx7wXyh7rGEBtIXrLHD+QT5c4MSJdKbh3LB4ogPpd
OKIl086QdUCsULp6juH5IXLjpt4KhroP5xPCO3Ix2HHhKhAzYJG56B8mNWmpHw7G
jUTrMp5vrBlBwfdg/kQvvdqOv+BxW5AmQaeKBIOKlOBOIigO3mTC6zRz/UJujpBw
ObbNT1St6rstRgVjK8Yd81Nv/o8KLdGYam/pChzdwMHBn9iZjks3cqDigTwFrebp
/253OcIuGMC37O2eyAPYbRBk8VA4Cb12gZNrIAvJNXyeksqvMGuzgkbM0US42FbI
gnYmbPn6sS8S/hvea4rT124RW60fRb6KZ80ZGR0nHwTeJOA/FDDLOQ3Ns+baEnnZ
+1fAAIgYAYD6gWJop4epeo6HLfOgQIl31+CpC5XgXXkVylIjPyUuXZLHdj3k+gGb
4/7C6cB8c+vtiwgulZwLx7DdMchKz1IqM3Sp7mX6Wg/TGgdgo1b9CPCCftCNS2Mx
hSrQRtPA+yxHtDxRpQctN6RUhSO3C1cKNf4HVptU2sdnMfUdTbPeMGcG2v/lqdYI
sGNhICGJFGlD3wM7SD0V
=dZt1
-END PGP SIGNATURE-


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



Accepted libstore-opaque-perl 0.03-1 (source amd64)

2013-01-30 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 19 Jan 2013 00:18:19 +0100
Source: libstore-opaque-perl
Binary: libstore-opaque-perl
Architecture: source amd64
Version: 0.03-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libstore-opaque-perl - module for opaque objects to prevent accidental leaking
Closes: 698468
Changes: 
 libstore-opaque-perl (0.03-1) unstable; urgency=low
 .
   * Initial release (closes: #698468).
Checksums-Sha1: 
 825ecad1e987de8d882e0a793a5b8a4f790c02fa 2072 libstore-opaque-perl_0.03-1.dsc
 872fc37ccdb2fe10838bb4f4cc9f8a328cd5e363 47540 
libstore-opaque-perl_0.03.orig.tar.gz
 f5b0ccb5db48919ed8843b92a78838a441707abc 1538 
libstore-opaque-perl_0.03-1.debian.tar.gz
 7f33f8f19704fdb7b2874ecd775c7d5e074010e4 12024 
libstore-opaque-perl_0.03-1_amd64.deb
Checksums-Sha256: 
 adeeca16c6be2d45552792e14cc9e6f837bd1e438956688cb08bc2815a40e8ea 2072 
libstore-opaque-perl_0.03-1.dsc
 d7ac48b9b9a80e6e445a1289a7d827299a92a982c58d457d5033ec8de888d4ca 47540 
libstore-opaque-perl_0.03.orig.tar.gz
 2b41ca88c96447bf07fd6f54476ca344bb3e0e3f9954f80cf6868b56658a02fe 1538 
libstore-opaque-perl_0.03-1.debian.tar.gz
 efb8df8d0e24fb632383e3781ba25d085e9b5899613b6ee544c36fd1fecef271 12024 
libstore-opaque-perl_0.03-1_amd64.deb
Files: 
 6f5bc4afc9c9491aac0b8d9a6603c0ce 2072 perl optional 
libstore-opaque-perl_0.03-1.dsc
 a73034958dbfd0680cee61bc9a526927 47540 perl optional 
libstore-opaque-perl_0.03.orig.tar.gz
 5f54b80028b85d75cb28d8e87f0e2f5c 1538 perl optional 
libstore-opaque-perl_0.03-1.debian.tar.gz
 9069f42e642bb652abe5390a2620dcb9 12024 perl optional 
libstore-opaque-perl_0.03-1_amd64.deb

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

iQIcBAEBCAAGBQJQ+dhZAAoJELs6aAGGSaoGE0AQAMPNYBGLzZzyJR741n+3duaN
7/9UI+6KabN+cBLxWBUnSWNnIDd81Dl0gNHxa6f3xpbinqJTI3sW87MwlKPTlLuq
0MiWcRZ3aHwoo6Rd+0ljeGXA0XicjNFiredAInUiMyfRKSkLfA72/WxjSHY9svhh
hD+9TKqOgO6BUT1Ydz998KvM4rSVehrgeJHCxUs4dvAYLWRf/qVBE9QmxMWMbztk
rXAbjkBTpC8HPz46zZ8HrYdlUCkM8Pm+eDq/lcUgGkTCcbRFtcGQsqvY9MtmMo+g
EttRl5FWAv5H6FA5eGWvkwT3jeuuyvrFd5um7hw3Ra9yWE8mo30eiePe1MtMIAtW
3gBRyYqbhkYhGMLEVn862HWysZJeGtl8zN13SGgFydflOYSIMMbC5pCdE5BkcIo6
369rYFOdfYZ1jhl1E3Gvy5Ga6HF+alsaCzhL3T58LMosvPKmA0U1NGF883Pp44AN
0cTFoisKIVul7pLGWgK+n1oGv3j01t1RAb8f7GyDr4Parhr9R1Jt8+KsjrcoQZsq
GgGRIw04EfTuCljW46zAoiMxDf4Rp5iasryVUBWKFac1eLpAV/Mdgdf4yCmtbSo0
zvw80pyF2vyomqGoQqavkkJJll0Awc5gXfHW5NuPQWF3RNNMhnG3gq0ILRzeib0+
fpyAvXo/okZOivUb9Wl2
=mIL3
-END PGP SIGNATURE-


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



Accepted libtest-command-simple-perl 0.04-1 (source all)

2013-01-30 Thread Casper Gielen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 8 Jan 2013 13:27:35 +0100
Source: libtest-command-simple-perl
Binary: libtest-command-simple-perl
Architecture: source all
Version: 0.04-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Casper Gielen casper-ali...@gielen.name
Description: 
 libtest-command-simple-perl - Perl module to test external commands
Closes: 697849
Changes: 
 libtest-command-simple-perl (0.04-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #697849)
 .
   [ Joost van Baal-Ilić ]
   * packaged regenerated by running dh-make-perl --cpan Test::Command::Simple
 --pkg-perl
   * control: supply description.
   * copyright: extracted from lib/Test/Command/Simple.pm.
   * control: updated from 3.9.2 to 3.9.3 (no changes needed).
Checksums-Sha1: 
 fbe6fd369ad874abe9ea16cf72ddf315ee7eb86a 1874 
libtest-command-simple-perl_0.04-1.dsc
 d78c5d74d5dcbfc2fdb7530db88508ef23fe6e6e 5659 
libtest-command-simple-perl_0.04.orig.tar.gz
 0f268387769e3c84d5b81319075140f410bb8e0f 1704 
libtest-command-simple-perl_0.04-1.debian.tar.gz
 47fe7500a060110c042d3f66d0212b2e5b51b8a4 10172 
libtest-command-simple-perl_0.04-1_all.deb
Checksums-Sha256: 
 9f0d0ae60783f05f1039affafe0a72802b630c4e0c15589b13d6509605b5333c 1874 
libtest-command-simple-perl_0.04-1.dsc
 8dd5bd30e093ba7b8b5612ccdb3a18af984341a9da5818407699e7b3d38c99d6 5659 
libtest-command-simple-perl_0.04.orig.tar.gz
 16d73caf1f52a44c9fced2dfb33544d1d6bd379d195721b1adaaf50218a848e0 1704 
libtest-command-simple-perl_0.04-1.debian.tar.gz
 49233fee3f6bbb1578237ea51654a777f3561d582cdbb539aa6ef3e0df623372 10172 
libtest-command-simple-perl_0.04-1_all.deb
Files: 
 2c3d40efa02b2f6495ab1913a3941bfd 1874 perl optional 
libtest-command-simple-perl_0.04-1.dsc
 5e33726ea6933396eea7f2bc6977c0bc 5659 perl optional 
libtest-command-simple-perl_0.04.orig.tar.gz
 889eec18e28c3c607a51176abd6d0111 1704 perl optional 
libtest-command-simple-perl_0.04-1.debian.tar.gz
 1c491f3bd271ba42ca3926fe4485b82f 10172 perl optional 
libtest-command-simple-perl_0.04-1_all.deb

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

iQEcBAEBAgAGBQJQ//ZzAAoJEDNRenKl5rDIQdMIALc1XBqB4VIPwpQ9QiKbfzQA
2aKbae0hbe5L3kbzobVwOsE18Bm0oU33grhrmvRAAOxhiUZm/7XSwK4DnLqw0Rhl
dWz8dXlpJbfRDwV7OgtXzVAe0dmGoHZnm9uehDS7njCOvzf3c9xtrRnmKfb2Vg0+
hYF3YHimNUafZtH+MrfAqyJF0vlxAM25vf6BRB0iv3A8r2QGFIxP3fqIAyGHXVd4
jdaQIusVsFXHYA+PE5gFOt4bw+vJI3ZB5POcDgIeLslhi3eUhonb1AWED151fEDi
OKPn4bn5pc3j2fIwruAwO2KrxKz/RckNmTK7h1ZshVxX4dq7Xhr1mGZ7+ZDW068=
=GvBg
-END PGP SIGNATURE-


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



Accepted r-cran-genabel 1.7-0-2 (source amd64)

2013-01-30 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 13:11:06 +0100
Source: r-cran-genabel
Binary: r-cran-genabel
Architecture: source amd64
Version: 1.7-0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 r-cran-genabel - GNU R package for genome-wide SNP association analysis
Closes: 699260
Changes: 
 r-cran-genabel (1.7-0-2) unstable; urgency=low
 .
   * Fixing the problem which prevents the package from loading while
 checking the version on CRAN
 Closes: #699260
Checksums-Sha1: 
 03a42cb1c2fad45a131b471a02128e1a500a7b94 1531 r-cran-genabel_1.7-0-2.dsc
 437bcf2557ca57ae8e98d69422a7cc4f9c8b3aa5 3572 
r-cran-genabel_1.7-0-2.debian.tar.gz
 3c777bb255a4b58c4c6b335757ff6c0711e6833e 4291204 
r-cran-genabel_1.7-0-2_amd64.deb
Checksums-Sha256: 
 32cf49f354409267ffbb33c98b6ae853df8be0c6030f857084593dd31537da7e 1531 
r-cran-genabel_1.7-0-2.dsc
 c023535cd75f91d0f059e6098630bea98e9c3b973b7454686e072a22a6b9a2a1 3572 
r-cran-genabel_1.7-0-2.debian.tar.gz
 93ff74f74c6cd005673d0595e2a03198228597cbf1d791a06698c20d1eee1752 4291204 
r-cran-genabel_1.7-0-2_amd64.deb
Files: 
 bc7d0ccefc1218b30e6c79f9b3dcb085 1531 gnu-r optional r-cran-genabel_1.7-0-2.dsc
 27a9c262a91958185abfed6b93847a18 3572 gnu-r optional 
r-cran-genabel_1.7-0-2.debian.tar.gz
 cdf61ad4e5a941688d9ccca330a1a492 4291204 gnu-r optional 
r-cran-genabel_1.7-0-2_amd64.deb

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

iEYEARECAAYFAlEJEBYACgkQYDBbMcCf01o7DQCeNg6/lcmD84NVboyCyLCu8uZk
QmQAnAnPX7qLEOZISvNLcvJByQ8aByH8
=D7rh
-END PGP SIGNATURE-


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



Accepted sextractor 2.8.6+dfsg-1 (source amd64)

2013-01-30 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 10:45:52 +0100
Source: sextractor
Binary: sextractor
Architecture: source amd64
Version: 2.8.6+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Ole Streicher deb...@liska.ath.cx
Description: 
 sextractor - Source extractor for astronomical images
Closes: 399759 699275
Changes: 
 sextractor (2.8.6+dfsg-1) unstable; urgency=low
 .
   * Remove non-free documentation from source. Closes: #699275, #399759
Checksums-Sha1: 
 be77d7dc95c15a5b32bdc67f1bcd573187796f01 2071 sextractor_2.8.6+dfsg-1.dsc
 2874820437e704781bf4504ef98ff4ec1c1710c5 1820234 
sextractor_2.8.6+dfsg.orig.tar.gz
 28c0e2d4828fd2e5d5fab6a9650c6ff69ed3aa72 16604 
sextractor_2.8.6+dfsg-1.debian.tar.gz
 dad13f9c2cd21dddfd8a14b66f21cbdbde2e7406 687132 
sextractor_2.8.6+dfsg-1_amd64.deb
Checksums-Sha256: 
 f43cf3e06b5a355603e15c70d205af0bebe24b188be961a3f6843779fbd2b25c 2071 
sextractor_2.8.6+dfsg-1.dsc
 b9632f93291807a962a0d12eecaea639245aa789561f2030dc083713ca0ed034 1820234 
sextractor_2.8.6+dfsg.orig.tar.gz
 53a51e35aa4ec9a8f574e5d8e692d3d9b94d9bff4c4548c4a3079f4c3b085908 16604 
sextractor_2.8.6+dfsg-1.debian.tar.gz
 e336c72f19d275f3fc7beed868244f065a003999d59c81972caa6cd38a8ecb42 687132 
sextractor_2.8.6+dfsg-1_amd64.deb
Files: 
 8bf5d031bf10124caa3a1d3f85f1d605 2071 science optional 
sextractor_2.8.6+dfsg-1.dsc
 ab7f9d02a6befb24397f7cc72ab902c9 1820234 science optional 
sextractor_2.8.6+dfsg.orig.tar.gz
 ffe9b69305afa3dea5e8fba6c674dd4a 16604 science optional 
sextractor_2.8.6+dfsg-1.debian.tar.gz
 a61b41a2b23751f1b4761dc473b996a6 687132 science optional 
sextractor_2.8.6+dfsg-1_amd64.deb

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

iQIcBAEBAgAGBQJRCTHpAAoJEHEVr9B3ENz3slsP/1hHtOmv3GHyDkdWkENalIBE
azXcMxZR6gIFuISIy8nEN22wOTJ+CIJEKkJ9+wy/PlHS1IyjcbgRrhl6nUb32wVr
hhxF9GAoZnKYGZx5sM9IJXGEOxdDKoereTwe1srf1Qz34rrghQnI0VulenlmufGr
hxlbRxbMTTcbsINqC9/hGos4x3s5kJCOPPbZU614chHlSFYBdfwlnfylhYUP+NJE
aYB/MO7DM+euSUTZkJ3hvzbCB16c33z4kCNwqyi6qxLvl0g7Gnk9LrKjH/IP23FG
rImMg/fDDVFltBgAqk8ZguFbw2tmtkC2X2qI2l7eIqlM++wxx07n1mlXEFVqqhDx
/Md1YiGe7DPLUsluv2TXjoENMTyBgYKngLykNzcmi78bXEOY44UsTZ+Amsnjvatz
SOvmEiuU+XXe5lnzwJECDz71ZKQ3Q/a6bjxtNsNNnHo5Ck9+1821Sw/DVKZrxuo7
r9wWYn7Kmz9pAlDeDyqYhN3RwS+qne8lUW8+g6PAut8GFFwRy2Iojt3GNEMN4KP+
iVaFwPY9cz2xIiYNLnFyi5wGeMB+n16xM9YlSY6lpghjsLOgnwQevynLXm18Mczx
YnYrYtbSqS74YwmEnmTdcv9bCPAPO2XInuvqFd2dBfMmG5pwUti1D3A0RFHzGX6A
ph209EodMmVCMgJihrTF
=cOi4
-END PGP SIGNATURE-


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



Accepted scite 3.2.4-1 (source amd64)

2013-01-30 Thread Antonio Valentino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Jan 2013 21:13:29 +0100
Source: scite
Binary: scite
Architecture: source amd64
Version: 3.2.4-1
Distribution: experimental
Urgency: low
Maintainer: Michael Vogt m...@debian.org
Changed-By: Antonio Valentino antonio.valent...@tiscali.it
Description: 
 scite  - Lightweight GTK-based Programming Editor
Changes: 
 scite (3.2.4-1) experimental; urgency=low
 .
   * new upstream release
Checksums-Sha1: 
 01704be7e03f11f559abde5abf64c3b339018bb9 1154 scite_3.2.4-1.dsc
 f138b009eeaa1636d2f7d7ab29fad2c08a8ccbef 1956084 scite_3.2.4.orig.tar.gz
 ca5baecfea2015211ee827ab34b05f666153b541 15506 scite_3.2.4-1.debian.tar.gz
 95c3c27a08ba44e0f1413f87f288c0af3ef5145c 1296256 scite_3.2.4-1_amd64.deb
Checksums-Sha256: 
 ee9a8522faf245abd8b4ddb0117a370682c67a82ca67a0e3748e28f3e9c26720 1154 
scite_3.2.4-1.dsc
 bd20b97513aee8e4584253d6ca31ec658bd4f098ceefb354889eb8a498cb5c08 1956084 
scite_3.2.4.orig.tar.gz
 a2ca974fe0bc317656465a5cd3fb3b9d367d545f147e084b2c0fc04894fb3cee 15506 
scite_3.2.4-1.debian.tar.gz
 daf8c31e98855303979e9cf470e4a8be4c4543aa6e26401cc3a5d91ac4c55533 1296256 
scite_3.2.4-1_amd64.deb
Files: 
 08841e88aaa8507307d11719170cbc71 1154 editors optional scite_3.2.4-1.dsc
 e27332abd4a6b5b551b1bc0f21b73667 1956084 editors optional 
scite_3.2.4.orig.tar.gz
 67902166fda34df2bb5daf93cc366d7c 15506 editors optional 
scite_3.2.4-1.debian.tar.gz
 107b579767d9d019e033d053c042a65d 1296256 editors optional 
scite_3.2.4-1_amd64.deb

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

iEYEARECAAYFAlEJOHoACgkQliSD4VZixzTYtgCeILa+UwK3wVZJX7MUdJHWMSIL
8/cAn17VgXQJxD0X+d2kI5AEDWqY+9+I
=yn0O
-END PGP SIGNATURE-


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



Accepted gpac 0.5.0+svn4288~dfsg1-1 (source amd64)

2013-01-30 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 14:41:46 +
Source: gpac
Binary: gpac gpac-dbg gpac-modules-base libgpac2 libgpac-dbg libgpac-dev
Architecture: source amd64
Version: 0.5.0+svn4288~dfsg1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 gpac   - GPAC Project on Advanced Content - utilities
 gpac-dbg   - GPAC Project on Advanced Content - debugging symbols
 gpac-modules-base - GPAC Project on Advanced Content - modules
 libgpac-dbg - GPAC Project on Advanced Content - debugging symbols for libgpac2
 libgpac-dev - GPAC Project on Advanced Content - development files
 libgpac2   - GPAC Project on Advanced Content - shared libraries
Closes: 688063
Changes: 
 gpac (0.5.0+svn4288~dfsg1-1) experimental; urgency=low
 .
   [ Alessio Treglia ]
   * New upstream snapshot.
   * Refresh patches.
   * Update symbols.
   * Fix Homepage URL. (Closes: #688063)
   * Set get-orig-source back to retrieve sources from SVN.
   * Strip libav stuff out of the tarball, bump DFSG versioning.
   * Don't remove include/gpac/version.h
   * Overwriting include/gpac/version.h is no longer needed as
 buildsystem works now. Upstream's buildsystem has been fixed
 so there is no need to overwrite include/gpac/version.h anymore.
   * Bump Standards.
 .
   [ Reinhard Tartler ]
   * Build against libav 9.
Checksums-Sha1: 
 a1963f6ae1302f5b065072dc3421fd4dfc1a21e3 2673 gpac_0.5.0+svn4288~dfsg1-1.dsc
 9b92ef36ed58236dd5ee176d24d170922cbd4bb3 4272389 
gpac_0.5.0+svn4288~dfsg1.orig.tar.bz2
 ca21a1f29abb815dc42c3b5da12e0db32177bbb5 36137 
gpac_0.5.0+svn4288~dfsg1-1.debian.tar.gz
 d6e124e163f3c943cac81ca467079b477ca81df0 227640 
gpac_0.5.0+svn4288~dfsg1-1_amd64.deb
 9fb40c09d9844b61d9cde045e3d2f719b684fa5c 1188630 
gpac-dbg_0.5.0+svn4288~dfsg1-1_amd64.deb
 08c09f830a4bc74e4dbcaa507e13d117b4780fd5 298930 
gpac-modules-base_0.5.0+svn4288~dfsg1-1_amd64.deb
 a2da6e60036f0511dbb6c37abfdb3ad38e4e48c7 1663574 
libgpac2_0.5.0+svn4288~dfsg1-1_amd64.deb
 647765a8666bb55affe590c4efcdf6d2e25d9637 4882020 
libgpac-dbg_0.5.0+svn4288~dfsg1-1_amd64.deb
 71f2ad73dc0ae508ad936d313a829849b75fc051 2602566 
libgpac-dev_0.5.0+svn4288~dfsg1-1_amd64.deb
Checksums-Sha256: 
 adaa24294fa4d96314c3dc67d091b6cbedfde2f107b906f06aa7eba442f759f9 2673 
gpac_0.5.0+svn4288~dfsg1-1.dsc
 34937d7e025bcf619c5076e466dbe16d9c0f4c42818c89310e3fefe445cee94e 4272389 
gpac_0.5.0+svn4288~dfsg1.orig.tar.bz2
 221f0e24033783b833cb69888a9b5f4f41475c023cb513ca8c1e152f099322cc 36137 
gpac_0.5.0+svn4288~dfsg1-1.debian.tar.gz
 101aee9bb199aba8591a635cf6ef22b80f37cfd195ad04c83693c293cb271f8f 227640 
gpac_0.5.0+svn4288~dfsg1-1_amd64.deb
 42731ddf4ea296fc91e0c88c0a88500c599f5c6412d773d0d9c9c7ec19ecf8d2 1188630 
gpac-dbg_0.5.0+svn4288~dfsg1-1_amd64.deb
 4fb663ff0176643a7c6fc45bde239425205d9b32a25c84c81661751adc97bf27 298930 
gpac-modules-base_0.5.0+svn4288~dfsg1-1_amd64.deb
 c7e5abcfd833d2ba2d886564136174c48445091b343fdfdadc4c5075d8cf310c 1663574 
libgpac2_0.5.0+svn4288~dfsg1-1_amd64.deb
 fa1a9400e39e3917a062e93e2456f3bd0a00f00ee2f3d029e148280bd9908c0c 4882020 
libgpac-dbg_0.5.0+svn4288~dfsg1-1_amd64.deb
 2c74214228951017df660b387cf284d8ba23486d554abac4547d345a4bda9360 2602566 
libgpac-dev_0.5.0+svn4288~dfsg1-1_amd64.deb
Files: 
 cdcc57c910c46eab185b727fc02e6fe2 2673 graphics optional 
gpac_0.5.0+svn4288~dfsg1-1.dsc
 36b0c423f176dddbc33923191fbdd021 4272389 graphics optional 
gpac_0.5.0+svn4288~dfsg1.orig.tar.bz2
 9d94848326c2f78fc3ede2e74a4ad6aa 36137 graphics optional 
gpac_0.5.0+svn4288~dfsg1-1.debian.tar.gz
 36e120111b30bd47a953a2dc95ef725f 227640 graphics optional 
gpac_0.5.0+svn4288~dfsg1-1_amd64.deb
 ef435c9e2bdd8647625468e0948a1941 1188630 debug extra 
gpac-dbg_0.5.0+svn4288~dfsg1-1_amd64.deb
 22d3414eeb11931c1523a05de38ebf03 298930 graphics optional 
gpac-modules-base_0.5.0+svn4288~dfsg1-1_amd64.deb
 a4b5ba7b0c5f19ba5a6254240258dab5 1663574 libs optional 
libgpac2_0.5.0+svn4288~dfsg1-1_amd64.deb
 8765f3f85d675e5e8d9d7e8cff73ac76 4882020 debug extra 
libgpac-dbg_0.5.0+svn4288~dfsg1-1_amd64.deb
 8c97afec87c56c1b92c54979e3f2c34a 2602566 libdevel optional 
libgpac-dev_0.5.0+svn4288~dfsg1-1_amd64.deb

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

iQIcBAEBAgAGBQJRCT7XAAoJEOikiuUxHXZaTIQP/1Hkz9mfH7sa7kBbAqXAP1CL
qdfdQrD1cC6HFnYVaNa4dTjIjk5wgtLHGFhwSkHMqiIYqO2vP/+IihNL7RJDQC90
LWDgzjnMU71W3A+s4/C73JScC+O5JM1hx02U5Dj1R9lgt0dYgcnF4O5JZQvLf34h
WlYI+PxLDgJG99DMuYjhHpjJ5UygBBtcljP0UUOIZ84ZpPHeeC/B6JtfFnfrNaJ9
QbkpcYCpcJfIcFtT/vZAxET8J+TOelub1FTG61fwwZDTGxziZ9xvexGyLgvMVDrQ
+QIv7ULoRs+qwz/0OALWKna7kN2Iiv3WfG2+r756p80H5rNVJcmkW10E43nlhNCP
vvcSW2CwH1C1SF0h8q2O7/Jj+PKIgs7kYsxpOYeYKtWrto2jrJIRNA/DKAYLCxwg
DmnOOTknfaQ+G+uTvQHy0cC+1kWOCyb/+2p/NFrAEW4jw6f4CfIoiMZIPKOVkuzj
lgn2MGG2nvNRGPyBqnGdBmlWUTrnRX8LZcqoobRfEuGSxf+jb46GhW4pqyivTin7

Accepted adplug 2.2.1+dfsg3-0.1 (source amd64)

2013-01-30 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 25 Jan 2013 16:36:59 +0100
Source: adplug
Binary: libadplug-2.2.1-0 libadplug-dev adplug-utils
Architecture: source amd64
Version: 2.2.1+dfsg3-0.1
Distribution: unstable
Urgency: low
Maintainer: Артём Попов art...@ubuntu.com
Changed-By: gregor herrmann gre...@debian.org
Description: 
 adplug-utils - free AdLib sound library (utils)
 libadplug-2.2.1-0 - free AdLib sound library
 libadplug-dev - free AdLib sound library (development)
Closes: 695710
Changes: 
 adplug (2.2.1+dfsg3-0.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Create a 2.2.1+dfsg3 tarball with
 doc/{fdl.texi,libadplug.texi,libadplug.info} removed.
 Additionally revert doc/Makefile.in to its pristine state from 2.2.1+dfsg1
 and flip debian/patches/04-no-gfdl-docs.diff.
 Closes: #695710
Checksums-Sha1: 
 51923aff92cffe1cc26de84f0a3b5997f3a44a9b 1887 adplug_2.2.1+dfsg3-0.1.dsc
 2e5f28e8550e23e3d66c424935af02f5dd910b44 634576 adplug_2.2.1+dfsg3.orig.tar.gz
 5192cdaa44dc1b8a97b2e57225a5c730fc23483b 5183 
adplug_2.2.1+dfsg3-0.1.debian.tar.gz
 1831e38a33a17c8dadc8ab0cd1d6482e6eaec4a2 214204 
libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64.deb
 97af44e506b4ca0bfced285dfe39e6dfb04424cb 307144 
libadplug-dev_2.2.1+dfsg3-0.1_amd64.deb
 53c758393a55b5be1c41ee0db8e9bf14e9c3d13a 30186 
adplug-utils_2.2.1+dfsg3-0.1_amd64.deb
Checksums-Sha256: 
 d1952576c6ef424e5967f28b9ad24ced7a5e3c1afed0da2addc0bc0c761d778c 1887 
adplug_2.2.1+dfsg3-0.1.dsc
 f685956e242bd182c262853fd2d8cec6d8a465034e8e98a4f3268f944df6e6b1 634576 
adplug_2.2.1+dfsg3.orig.tar.gz
 392b6caa84f7ae156d108ebb639bca1a4710588d45c681f3d9bf89335a3618b9 5183 
adplug_2.2.1+dfsg3-0.1.debian.tar.gz
 5eea332d8584c4c0d8450f45c819e26ecc3c0c0946a9eb2c896e5fbb75f9f3dd 214204 
libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64.deb
 d6a3cc0c89bdb41cdc51174ad3fff59e6c57707a5e2a795b1e1af229bdd93a56 307144 
libadplug-dev_2.2.1+dfsg3-0.1_amd64.deb
 e2cabc3e5b58b0008e916aeaea920d7ccaef644573b22766c352dedbc226a4ef 30186 
adplug-utils_2.2.1+dfsg3-0.1_amd64.deb
Files: 
 7d16a98d219cd20374a694fa6d04f6e4 1887 libs optional adplug_2.2.1+dfsg3-0.1.dsc
 0f145e82dd89e9c232c23f498c1b4d88 634576 libs optional 
adplug_2.2.1+dfsg3.orig.tar.gz
 f4f239d5c75fdbd238f993f62e879061 5183 libs optional 
adplug_2.2.1+dfsg3-0.1.debian.tar.gz
 d26d93926497badaad370918df0b71ac 214204 libs optional 
libadplug-2.2.1-0_2.2.1+dfsg3-0.1_amd64.deb
 a547c61782b7c8e052c5677e9da64ca3 307144 libdevel optional 
libadplug-dev_2.2.1+dfsg3-0.1_amd64.deb
 8bdd770b5095d62713f6ec8c5e09a2c9 30186 utils optional 
adplug-utils_2.2.1+dfsg3-0.1_amd64.deb

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

iQIcBAEBCAAGBQJRAqbUAAoJELs6aAGGSaoGaNIQALcj2TRXXCS6WUzQYRZGbL1n
88eA5+jkej9ezQLerX8w+T6x5VzTe5awEfdeQqylhet70k3uQt1tSIvyTTOMfXWZ
H2xKMV0rT63K6gQipKpWPAbXeJso8I48aOa4FMwL7t5UqXCKEMEFkw+cJfwgLDyB
pEZfCvu5fd1xpzyPPmxGhhnkuOd7lJ2cWcB/YAHPH7IKkEtxjDQDQAiwIimyxEqJ
cwYDkcRkzNFWbdbOh6etDhbk3Ur7z47oXfHWlfQanenPTZ4ErL2+3mZ6B2kMXqIc
WIR1KptREzHj/nY3w6BkoVYvNDpw+FcEmgqpZo7+3QMxMgNHeoP2IWXFeB7hsW7S
gFNQSNLtRBgfwlFMS7Z369N0hJJyofJDX0pVg+y6iXX3mY4x/IWVQUerSEEhK1F1
5tghk13DD4Ya90QJIop4+L2c3oqGRd/T4gCSD1eGS1Zl5b9ucolywI4TSTI4iXl1
QjQi8hiKH4J0DYwI+ifmRcZogGaain7jatShwl9qHK5bSYICWra75gHmBcoR4stQ
Y4sVca5FVCbMlX9u8K6Ro1aE+RE8AHsIUctXA4VlezoFJujS/ZdTe3Ccam0VzNpr
9Qlr56CL6Se2dFvi9McyeFTTYFN8XNQOy+55xUItZ49gAe0Gkv+EzSxlKbuN3NXT
FGRjQ/nxP/Zno/fZUiSD
=kU2g
-END PGP SIGNATURE-


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



Accepted ettercap 1:0.7.5.2-2 (source amd64)

2013-01-30 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 15:53:55 +
Source: ettercap
Binary: ettercap-common ettercap-text-only ettercap-graphical ettercap-dbg
Architecture: source amd64
Version: 1:0.7.5.2-2
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 ettercap-common - Multipurpose sniffer/interceptor/logger for switched LAN
 ettercap-dbg - Debug symbols for Ettercap.
 ettercap-graphical - Ettercap GUI-enabled executable
 ettercap-text-only - Ettercap console-mode executable
Changes: 
 ettercap (1:0.7.5.2-2) unstable; urgency=low
 .
   * Merge ongoing upstream mods per upstream request
 - version number
 - changelog
 - options --certificate and --private-key
Checksums-Sha1: 
 7d6da917a457fd3f84a532db2e1117c2103bbe2c 1670 ettercap_0.7.5.2-2.dsc
 f20a8fac4bd2e9d7525365dab91d69195a174006 13152 ettercap_0.7.5.2-2.debian.tar.gz
 36719182844aeae0d73a35b355f911eed6c19c47 394882 
ettercap-common_0.7.5.2-2_amd64.deb
 30f32853be18f10983e3def77351a8bf915aab5d 186008 
ettercap-text-only_0.7.5.2-2_amd64.deb
 b6a5d74f1c1c4d2ee7f855865df3d80311283c72 239016 
ettercap-graphical_0.7.5.2-2_amd64.deb
 7920a710b3f1b883a687d5c895a79f08fe1f034d 2039718 
ettercap-dbg_0.7.5.2-2_amd64.deb
Checksums-Sha256: 
 c4b5fb8069258ec65bb6b58f8bd1a1545c24f66f98f273eedcb0a3b04f16bed7 1670 
ettercap_0.7.5.2-2.dsc
 54b6930c6edb40df4ce8db3f2ca21a6b801aaf9d0d78ae164e4da1c2a42e332f 13152 
ettercap_0.7.5.2-2.debian.tar.gz
 d7ecb417df30d86cdfdc84555682a92419e8533779920da122cdef83f70db83d 394882 
ettercap-common_0.7.5.2-2_amd64.deb
 eaec940b5e6ab5ce162658b7bb3cfb94d4e81298ebf40cf9719d5a0abce74d96 186008 
ettercap-text-only_0.7.5.2-2_amd64.deb
 2ddf227bd307a23b3d30f2d1f33ad6280414c0da5f0bd0a94e02af9199d0964f 239016 
ettercap-graphical_0.7.5.2-2_amd64.deb
 bf46ca267d2bf9043115a28ab36c9f74bea3adb7d5c2b226f30ec6c7c47ba17e 2039718 
ettercap-dbg_0.7.5.2-2_amd64.deb
Files: 
 bdbb3b8ad2b27d10ae7c200bd1c48312 1670 net optional ettercap_0.7.5.2-2.dsc
 fe3a33b90934da08e15c96a267ff2929 13152 net optional 
ettercap_0.7.5.2-2.debian.tar.gz
 d2a142dd179cd46ee8bec6531fbfd898 394882 net optional 
ettercap-common_0.7.5.2-2_amd64.deb
 98fdb45dd19b3e98e8d5c6ea0b2cb9fc 186008 net optional 
ettercap-text-only_0.7.5.2-2_amd64.deb
 3c16f04cba0d39c770c7569bab598801 239016 net optional 
ettercap-graphical_0.7.5.2-2_amd64.deb
 fab06017508f18d54c34261e502d34b9 2039718 debug extra 
ettercap-dbg_0.7.5.2-2_amd64.deb

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

iEYEARECAAYFAlEJQs4ACgkQLz4Gnv7CP7IUXwCgv9gumZ2CgouL7vf1cmMowHJB
rGAAoJ1tWOVFT9IoLHnH/q0fzETHkZAp
=3Q5Z
-END PGP SIGNATURE-


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



Accepted ahven 2.1-4 (source amd64)

2013-01-30 Thread Reto Buerki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 10:04:08 +0100
Source: ahven
Binary: libahven21.0 libahven3-dev ahven-dbg
Architecture: source amd64
Version: 2.1-4
Distribution: unstable
Urgency: low
Maintainer: Reto Buerki r...@codelabs.ch
Changed-By: Reto Buerki r...@codelabs.ch
Description: 
 ahven-dbg  - Unit test library for Ada (debug)
 libahven21.0 - Unit test library for Ada
 libahven3-dev - Unit test library for Ada (development)
Closes: 699193
Changes: 
 ahven (2.1-4) unstable; urgency=low
 .
   * Update copyright information
   * Declare conflict with libahven1-dev (Closes: #699193)
Checksums-Sha1: 
 9d7d16195a7ab7667d12394affd382dbcd5be709 1959 ahven_2.1-4.dsc
 57aab6e1bc03ef78f6bc7dda4522970a2fe3fd83 6803 ahven_2.1-4.debian.tar.gz
 9f7ee00e570d3c4465a821b80b2715e9290ad77c 82650 libahven21.0_2.1-4_amd64.deb
 d5f82d1eac3b8dc8b26036822052d434e26b777b 162080 libahven3-dev_2.1-4_amd64.deb
 a3bc98e2a02c0c06e11be6b2dd0b0abac2321891 96216 ahven-dbg_2.1-4_amd64.deb
Checksums-Sha256: 
 8d98fd10d887d5adb85c573ec969de32ebbdd19136a9cdbbdf5ec416b84dffe2 1959 
ahven_2.1-4.dsc
 02520fe039107063786eafc875f0cd18b4bc6aa79403a4e3aa0703557dc5d545 6803 
ahven_2.1-4.debian.tar.gz
 7bbce2fac232642b0c8bdc485c59e5167088a61f000f867ced8079bf45e1a050 82650 
libahven21.0_2.1-4_amd64.deb
 7c7dd67ea197bde4671fa29be494075a9918431fa7c3c0a83fc75e24721cb736 162080 
libahven3-dev_2.1-4_amd64.deb
 773301c12ffb84562c8d002448d3b270c335d33706224eca5bebb3b081a3e314 96216 
ahven-dbg_2.1-4_amd64.deb
Files: 
 a8d3ef8c5373e6dd4fb9e4150ed9b5c4 1959 libs optional ahven_2.1-4.dsc
 25a56aa63702d6e724d2e4d0055815db 6803 libs optional ahven_2.1-4.debian.tar.gz
 99d861fcb7647a28551665a27b286ea7 82650 libs optional 
libahven21.0_2.1-4_amd64.deb
 33e6a633dc0e44599a8911253e542a7a 162080 libdevel optional 
libahven3-dev_2.1-4_amd64.deb
 f0c0855d0c447e381121deb0cb2c5f1d 96216 debug extra ahven-dbg_2.1-4_amd64.deb

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

iQIcBAEBAgAGBQJRCVDUAAoJENPhc4PPp/8GwZEP/A8GWGG3I4KBwTeiDsZ84kL4
barhPDAIRtMw2Lcfm8QGXEW0uyzWeIGhnrS+zS2NVdTzP0X90DH1IulmWw8OpKJx
nUZ2rus2wBwXUNkXSX1mi4FIGhOh1fMJsXaK/Gwu+SHBcG6ChSTlgzXFo0E1XUFW
42bEj1LWXoSiBF0haVPpMyaLeEF8o9M5qZzML0Biq+4t0NWNhjLJNkDMvbjBkDHa
XWx+pTZYTeEoXwDNRx4DLiTsS+LgGYekpw6Fr/Q8M6Po8IAQubGaiZDBHQ4nUW2M
KGM0/VrtXXM9f84wvJHOXQAB8wYOXI74iasBGtJ6KSxThMwmsUaG17QPRHTstJIj
5v8ct4TXDbglh7AlY9BIkzfivrWzz6mWysoqmhVyxsiyGJjkF529o3ogKonN7Z58
reV4Fx/VxCwcYRRWqatoy45BMcb1ajOyKByBTARxD7aZ6x8kqXALFbir4eLDArCR
CSSzAQMH90izsT+0RB8pzYaVjIcnbhL98hk7dduIE9VoPflFpOrKeOfCgisy/sAp
nFwBYD9v5YGiF93c5VK5Gr31I+4TFBKzjeU+W0smG4kWW0GvvJdtSxT+7NzGQYPG
iityqSu9mvvvkzZo8VsUsIb+vAWJnAOK0lLX5HEExFRR3J9TNngzj5mxzETq4aGu
1zz6Bizr95PWn9A+O0Nd
=PBQ3
-END PGP SIGNATURE-


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



Accepted pcscada 0.7.1-4 (source amd64)

2013-01-30 Thread Reto Buerki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 09:44:29 +0100
Source: pcscada
Binary: libpcscada0.7.1 libpcscada2-dev pcscada-dbg
Architecture: source amd64
Version: 0.7.1-4
Distribution: unstable
Urgency: low
Maintainer: Reto Buerki r...@codelabs.ch
Changed-By: Reto Buerki r...@codelabs.ch
Description: 
 libpcscada0.7.1 - Ada bindings to PC/SC middleware
 libpcscada2-dev - Ada bindings to PC/SC middleware (development)
 pcscada-dbg - Ada bindings to PC/SC middleware (debug)
Closes: 699194
Changes: 
 pcscada (0.7.1-4) unstable; urgency=low
 .
   * Update copyright information
   * Break and replace libpcscada1-dev (Closes: #699194)
Checksums-Sha1: 
 0d911be4cd9708e491fee3a9ff3da35497451054 2007 pcscada_0.7.1-4.dsc
 2a6e613ba0f08eb51537823299353305d41a77b1 4507 pcscada_0.7.1-4.debian.tar.gz
 74224eadc0057dbe2f3198bbe66c7d9f1e7ce7e6 130746 
libpcscada0.7.1_0.7.1-4_amd64.deb
 803f0bda6bed3d25701047dce9904662de83e3f9 209922 
libpcscada2-dev_0.7.1-4_amd64.deb
 7af92721d2dfa0bd581ae82842c61cfad2b3d093 141818 pcscada-dbg_0.7.1-4_amd64.deb
Checksums-Sha256: 
 32c5ed440b1be1c2b3dc7b699acd5ef8695974d9759de9e31c195d5d937d6a50 2007 
pcscada_0.7.1-4.dsc
 5c1a0c24e0c4fdfd8456a5bfcde36c08e43e190f58e604c143273954c43ae93e 4507 
pcscada_0.7.1-4.debian.tar.gz
 1347d15022872ea4f8cec93c090440819e6b4478159537902fcfa81761dadc50 130746 
libpcscada0.7.1_0.7.1-4_amd64.deb
 2e1ade970dcdce0dae9a081ba65966a9abc4ac3cb02a3e9dbd4d2a58f458a8e7 209922 
libpcscada2-dev_0.7.1-4_amd64.deb
 6146b8732eaecbf84e2b52311e4f9a9b5d4f2bafb17922b7adc64ecdc309de70 141818 
pcscada-dbg_0.7.1-4_amd64.deb
Files: 
 3d469066edf6a819f6578a8e1c0fbcf6 2007 libs optional pcscada_0.7.1-4.dsc
 a3c748523586126d74b23859e47b76c6 4507 libs optional 
pcscada_0.7.1-4.debian.tar.gz
 60663ffccbc7d1a79b00040f6910430d 130746 libs optional 
libpcscada0.7.1_0.7.1-4_amd64.deb
 6833c1327bd7c29861c96fcd59959b43 209922 libdevel optional 
libpcscada2-dev_0.7.1-4_amd64.deb
 f91e6dd9f6627ad3d2bc025f3c388cfd 141818 debug extra 
pcscada-dbg_0.7.1-4_amd64.deb

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

iQIcBAEBAgAGBQJRCVD8AAoJENPhc4PPp/8GTi4P/RIbymRf6QJNFWT0pzXE2vah
y4Ot7w8SjNVnF5gbklFu/b/yq58Vmn+isQU+I4hX5rzpORJq/44RQs34+nzA9+Rd
ZScznsk7UL/5jkrYqnMqxh6yFE8485IZSzp2rSUN5akIRZoNc5YAC2kFnpMrxP0G
Pt3zfBaCjSZ+wKCqHXOjYO7IcyOzgo/qdkfgPcGtXRCiIOWiPwA1B5wC6G1On63c
4vJjJYJIjlvj34bpoKbnhalW5LfgBi983u1eAmRi0HnJsJjiSXFGSbRQmpyqBlLb
1Si1fz3jysH2R0CndNCT8zr1Xr8z+KEXeVA6K4mp/RtDNdha2wSRm6j3HQ1ueLVG
x6JUp6zdGIt9MUTQFKDFoq2/BBK4wMWsT+Ri4dB0kAoMyrglA3u0M35vGJYEvHAk
4BH0Fi0F4dt+bLgQyU568ow1ufinnbVmZW5EclZIsMbsXBJhYlS+PQAXDEAkmQ62
GbcveSaB2QaFxWZqZLacFa/la1xedvWUPEr+EAIwGQ5AutdMk4fHT0dYQQiE5sbt
NrF9wd9Nx5Gh/f9CKjr5SMFFUTwEGdh0AZL3R7iSJVEsK/UA5AnncNT9/pgWw4uH
k+IXm31US2MVU42ZFUAjlt6WSfJvSQtwaGWzoIuj5rBThHHvWrDAr4S9Yg/bkUoM
v3DwU6JlaEpRJxYbHenB
=ozWJ
-END PGP SIGNATURE-


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



Accepted wcslib 4.17-1 (source amd64 all)

2013-01-30 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 29 Jan 2013 10:04:37 +0100
Source: wcslib
Binary: libwcs4 wcslib-dev wcslib-doc wcslib-tools
Architecture: source amd64 all
Version: 4.17-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Ole Streicher deb...@liska.ath.cx
Description: 
 libwcs4- Implementation of the FITS WCS standard
 wcslib-dev - Header files and static library for libwcs
 wcslib-doc - API documentation for wcslib
 wcslib-tools - Command line tools utilizing wcslib
Changes: 
 wcslib (4.17-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 b86d65c382be7dce4879e33021a312fc3c5e3dfa 2128 wcslib_4.17-1.dsc
 74ec5fd6ec93e9a09798598c3738b3d4bc99b3e7 1598044 wcslib_4.17.orig.tar.bz2
 8049daa08314b30328a948b9cc0680df66285429 4164 wcslib_4.17-1.debian.tar.gz
 7759c5e2ec38ba41b735e2d99bee8ee6d8e9ef96 252844 libwcs4_4.17-1_amd64.deb
 6ce8741f35b3785617e8441833bab76ee19d2a5e 367572 wcslib-dev_4.17-1_amd64.deb
 ef4c522e287b7f677b67fd2d3b80243bbd4de1f1 1220386 wcslib-doc_4.17-1_all.deb
 5e59453cb8528898b10d4b659a44124b141c811b 191774 wcslib-tools_4.17-1_amd64.deb
Checksums-Sha256: 
 581e2b3f8fb74efc7aa76ac69594e1a54ddcfe124cbfa3a440f4dd7243aded9a 2128 
wcslib_4.17-1.dsc
 b81259260ece1afa738490e6ae3821315208cb5f121096fff958a0f90c3a7d5c 1598044 
wcslib_4.17.orig.tar.bz2
 2760b0962fefc251acb27c6a13fa8fcf837efc26911ec11c73b473f0974a2d33 4164 
wcslib_4.17-1.debian.tar.gz
 b5cdba13cd2bdc5e293f1862a6c6b8167f65e1b814dec9c3ca42b00ea4cff535 252844 
libwcs4_4.17-1_amd64.deb
 5a79be0fe4bc926a0ac248235ec56fdf1dfee859b8a43ccba423bd70fb3ac646 367572 
wcslib-dev_4.17-1_amd64.deb
 322ba815e384cefd002180683eb0003a226413dcf7b709b55538b55d19a3c7ca 1220386 
wcslib-doc_4.17-1_all.deb
 2eed391041d4d96134c6aa07ec070816ac2e1028d5af155538f005b455fba64a 191774 
wcslib-tools_4.17-1_amd64.deb
Files: 
 02afba8c0d3bb188fa9060cb9aba72c3 2128 science optional wcslib_4.17-1.dsc
 81f739c84789b84626db9fe4cd866081 1598044 science optional 
wcslib_4.17.orig.tar.bz2
 b82b673e4eaba5d1a3a0299a74b1c454 4164 science optional 
wcslib_4.17-1.debian.tar.gz
 dbcd3b365c3069ed71eeb9f514bbe20e 252844 libs optional libwcs4_4.17-1_amd64.deb
 b56313b4b273d3e58a3325e09c161c7c 367572 libdevel optional 
wcslib-dev_4.17-1_amd64.deb
 8d9683f79283e4f4d1c31c2fe90138e5 1220386 doc optional wcslib-doc_4.17-1_all.deb
 af9592258aa4e108d5b638852c3cf980 191774 science optional 
wcslib-tools_4.17-1_amd64.deb

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

iQIcBAEBAgAGBQJRCU2XAAoJEHEVr9B3ENz3hw4P/2sDK+oDHkkphZJYy3JZkLBO
f0yjTHRmUkm4rYK0WN+nsMVjFfQEQ0klgEmHcs2hBuCaZy4d1gYAL/4+DFQiOgg1
ctT3WxXsDtWi64sdXQ0S2jYyjYzxOD8GVUtlgHAlgX74c22SPa9y5GZ/qKU5cNx9
57+/6s48lgaBauZ0G4kOsJys5K1LcAu1wGILK2gvADQZJhgAn4Wl5udRxg5nD3IF
YCyJvflbkfX7R7QnaQbuxorjhU6njLzL/yfdNSXBRhwigG1zHlUGrKIUVfPS+awT
R8XVgzUe96QAXiKq3Jxzjst/BwOHHOtAXt7UgVILLEbMQYqR4WHLLUjIGZiU1ofw
vRPKQI7HoNoJ8Pcnvqa3wg0AaMNC6XZluxOipSbrULtR9EG5CJcpLzAxMvIxcXOh
EeO65u2+sRZNrSfDEEuHUY5HbfZ0XtrVjAjxuxeE2uyabPrrwAkTDu5HlEZHPan3
J/NT/W7OKlakyMwt1RIVXcKkS60FLnPJJicLHh8QuL+oZQfcBxk8Dlt2RZHikYBH
m3DMWZRXanbMtH79DEN8NWODJeakjsk9r63Y6oBOa7BTuwA+z8DP6xBuE0pfxRka
+pcmF64bQJax1j/KbK7Kmn1VbbNoysqGO2F0/b/XWs48Pxhba1GqHL0M2fOWp2Us
lB/WCAT5q9d1uDUwvMf8
=QySq
-END PGP SIGNATURE-


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



Accepted mini-buildd 1.0.0~beta.3 (source all)

2013-01-30 Thread Stephan Sürken
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 17:11:36 +
Source: mini-buildd
Binary: python-mini-buildd mini-buildd mini-buildd-common
Architecture: source all
Version: 1.0.0~beta.3
Distribution: experimental
Urgency: low
Maintainer: Stephan Sürken abs...@debian.org
Changed-By: Stephan Sürken abs...@debian.org
Description: 
 mini-buildd - Minimal Debian build daemon
 mini-buildd-common - minimal Debian build daemon - 08x upgrade dummy package
 python-mini-buildd - Minimal Debian build daemon: python library and user tool
Changes: 
 mini-buildd (1.0.0~beta.3) experimental; urgency=low
 .
   Third beta. Convenience release: Status handling improvements, some eye
   candy and more.
   * [bebb9ca] html(home): Improve active package/builds status.
   * [2804ef7] Make builder/packager top level logic more fail-safe on item 
clean up.
   * [13ce63a] misc.sose_call(): Log call output in case of error.
   * [24a8f85] api(status): Show active packages and builds.
   * [160ecb6] api(list): Add arg '--distribution' to regex-limit on dist; add 
Component to the displayed items.
   * [8985396] api(migrate,remove,port): Add (optional) arg '--version', and 
generally handle multiple per-dist package versions (via components).
   * [3caecef] Improve display name for Distribution, Repository and Remote 
models.
   * [8160a4f] Daemon, Suite, Repository: Add regex-validation for resp. model 
identities/names.
   * [edd51f8] html(home): Renice Repository/Chroot/Remote lists.
   * [02ebd2a] Repository: Forbid changing identity on an existing instance.
   * [19024e3] models: Make instance display strings more generic, and better 
(tm).
   * [c675911] html/css: Add colors for admin actions (activate, unprepare, 
deactivate).
   * [01ca74f] misc.py: log+doc cosmetics, add meta func dont_care_run().
   * [c90153f] remote: Add chroots to display name.
   * [e7112ad] mini_buildd/packager.py: Fix wrong syntax on exception text 
format.
   * [1a94a72] Improve status model handling (Fixes long waits on start-up, 
some possible status glitches).
   * [272dd60] reprepro: Avoid parallel reprepro calls (Fixes possible locking 
errors).
Checksums-Sha1: 
 473705902b6296774bdb460ee0b7e803905f29c2 1347 mini-buildd_1.0.0~beta.3.dsc
 cef5e03ce3122feaf548c36241f4c6da35277114 609538 mini-buildd_1.0.0~beta.3.tar.gz
 443d7f4a3195863ccba240652cae68d4890213a0 339794 
python-mini-buildd_1.0.0~beta.3_all.deb
 38509f660262c71df47e2eb8e63a281339a4afbc 1060166 
mini-buildd_1.0.0~beta.3_all.deb
 a32c2ff4d26439976eb88f9baa78999d4aae9661 52572 
mini-buildd-common_1.0.0~beta.3_all.deb
Checksums-Sha256: 
 63a4e0020b68dc2d2e1d1d6d8534f34e61ce44aa865dd313869a522513527dde 1347 
mini-buildd_1.0.0~beta.3.dsc
 79d9e18458987994bf47a46a56c53747f3d31b4df806c2434f31e1c42ac43cdf 609538 
mini-buildd_1.0.0~beta.3.tar.gz
 4c0a697bff980143cddfaca3bf4537e714de0afa3970bbb93ae45187569cb3af 339794 
python-mini-buildd_1.0.0~beta.3_all.deb
 e4932f6aef5c7316f5cea683da1f3b570b1974e2d537e2954078431db2ee9fd5 1060166 
mini-buildd_1.0.0~beta.3_all.deb
 b36914d7d407bc6206643ad5ced419240b9c1878fdf36086bf781fd304b65a03 52572 
mini-buildd-common_1.0.0~beta.3_all.deb
Files: 
 0e651903836de96a6a7a84db2d8f054f 1347 devel extra mini-buildd_1.0.0~beta.3.dsc
 36e14221cbc35b03d496a945f3b77a1d 609538 devel extra 
mini-buildd_1.0.0~beta.3.tar.gz
 4c597bd719343addb8493e0a0f151966 339794 python extra 
python-mini-buildd_1.0.0~beta.3_all.deb
 f56c47fccb69c31e827fd38e4e94585a 1060166 devel extra 
mini-buildd_1.0.0~beta.3_all.deb
 ce6a91d72e95c3808660029c2ec45e8d 52572 devel extra 
mini-buildd-common_1.0.0~beta.3_all.deb

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

iD8DBQFRCVYjzCVHePKM0QIRArLpAJ9UkHlD3k3SE5Y75PkQXXaGVzH5JACfYpef
fpdrKGK/4hdC1VO/RcIjE68=
=5DS2
-END PGP SIGNATURE-


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



Accepted kdesdk 4:4.8.4+dfsg-1 (source all amd64)

2013-01-30 Thread Lisandro Damián Nicanor Pérez Meyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 30 Jan 2013 13:47:01 -0300
Source: kdesdk
Binary: kdesdk cervisia kapptemplate kcachegrind kcachegrind-converters 
kdesdk-dolphin-plugins kdesdk-kio-plugins kdesdk-misc kdesdk-scripts 
kdesdk-strigi-plugins kmtrace kompare kuiviewer cvsservice poxml umbrello 
lokalize kpartloader okteta okteta-dev libkasten1controllers1 libkasten1core1 
libkasten1gui1 libokteta1core1 libokteta1gui1 libkasten1okteta1controllers1 
libkasten1okteta1core1 libkasten1okteta1gui1 kdesdk-dbg
Architecture: source all amd64
Version: 4:4.8.4+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Lisandro Damián Nicanor Pérez Meyer lisan...@debian.org
Description: 
 cervisia   - graphical CVS client
 cvsservice - D-Bus service for accessing CVS repositories
 kapptemplate - application template generator
 kcachegrind - visualisation tool for the Valgrind profiler
 kcachegrind-converters - format converters for KCachegrind profiler 
visualisation tool
 kdesdk - Software Development Kit from the official KDE release
 kdesdk-dbg - debugging symbols for the KDE Software Development Kit module
 kdesdk-dolphin-plugins - dolphin VCS plugins
 kdesdk-kio-plugins - transparent Subversion access and Perl documentation KIO 
slaves
 kdesdk-misc - miscellaneous tools from the KDE Software Development Kit
 kdesdk-scripts - scripts and data files for development
 kdesdk-strigi-plugins - software development file format plugins for Strigi 
Desktop Searc
 kmtrace- memory leak tracer
 kompare- file difference viewer
 kpartloader - test tool for KParts
 kuiviewer  - viewer for Qt Designer user interface files
 libkasten1controllers1 - controllers Kasten library for Okteta
 libkasten1core1 - core Kasten library for Okteta
 libkasten1gui1 - gui Kasten library for Okteta
 libkasten1okteta1controllers1 - kastencontrollers library for Okteta
 libkasten1okteta1core1 - kastencore library for Okteta
 libkasten1okteta1gui1 - kastengui library for Okteta
 libokteta1core1 - core Okteta library
 libokteta1gui1 - gui Okteta library
 lokalize   - computer-aided translation system
 okteta - hexadecimal editor for binary files
 okteta-dev - Development files for Okteta
 poxml  - tools for translating DocBook XML files with Gettext
 umbrello   - UML modelling tool and code generator
Closes: 695701 696959
Changes: 
 kdesdk (4:4.8.4+dfsg-1) unstable; urgency=low
 .
   * Team upload.
 .
   [ Pino Toscano ]
   * Improve packages descriptions:
 - kdesdk-dolphin-plugins: mention all the contained plugins.
 - kcachegrind-converters: sort the list of scripts.
 - kdesdk-strigi-plugins: add xliff files.
   * Make kdesdk-dolphin-plugins enhance dolphin.
   * Pass --language=C to dh_installman to avoid its autodetection of the
 language, which causes bogus results due to the script names (all the
 man pages in kdesdk-scripts are in English, anyway). (Closes: #696959)
   * Remove .texi files under GFDL + invariant sections: (Closes: #695701)
 - add prune-nonfree to debian/rules to remove them.
 - add a note on README.source of what we are removing from the original
   tarball.
 .
   [ Lisandro Damián Nicanor Pérez Meyer ]
   * Confirm symbols files from buildds' logs.
Checksums-Sha1: 
 33988210c2764eb4566caa01d374b414cd41b204 3858 kdesdk_4.8.4+dfsg-1.dsc
 b281da42f0687b7d86412284b323c17f3849ec6e 5143248 kdesdk_4.8.4+dfsg.orig.tar.xz
 79dd13110c051aeac7c9e6ae9ccc68b22954f29f 65178 
kdesdk_4.8.4+dfsg-1.debian.tar.gz
 a5b657d33a585e8fc9411076b362d2ae1a1d49f1 13788 kdesdk_4.8.4+dfsg-1_all.deb
 c1249216f0ccaf732d26d981863f4a0ac801a219 508090 cervisia_4.8.4+dfsg-1_amd64.deb
 72b8b56f43c5fca635da8c7bd900c8758574ba33 872840 
kapptemplate_4.8.4+dfsg-1_amd64.deb
 27818677de708bd23ddc87c1f93bad0bf6de01a4 312962 
kcachegrind_4.8.4+dfsg-1_amd64.deb
 4d0596d636b169cb9bc762c9d12882c920a317e1 27230 
kcachegrind-converters_4.8.4+dfsg-1_all.deb
 994f9dd1bcc4d57bf87a83879aed2df76c7fab68 128552 
kdesdk-dolphin-plugins_4.8.4+dfsg-1_amd64.deb
 2c6237e28b9eddbcfab79e560464fc4d52accd72 400178 
kdesdk-kio-plugins_4.8.4+dfsg-1_amd64.deb
 f141a1cf5e4d56a68fffe645d8e60973e0b08d04 24366 
kdesdk-misc_4.8.4+dfsg-1_amd64.deb
 f11096314f90440539a8a9d6bffac5a991ea6bee 105160 
kdesdk-scripts_4.8.4+dfsg-1_all.deb
 77de5545dadc432af062c1e4c5454bbc385892e5 28816 
kdesdk-strigi-plugins_4.8.4+dfsg-1_amd64.deb
 aa66f4c2249b3ca7db716e35ee39f89b8b790326 73180 kmtrace_4.8.4+dfsg-1_amd64.deb
 58608ad66b252a165706f19e538d4dd4943955ac 438980 kompare_4.8.4+dfsg-1_amd64.deb
 a76ba97487cf1488f8b3cb031c893da377da4bfb 45744 kuiviewer_4.8.4+dfsg-1_amd64.deb
 ef590596632c582cb05bcc7599d7150003f90ea4 53190 
cvsservice_4.8.4+dfsg-1_amd64.deb
 f3f62dc2b3dc7d2740551118ef61763ef7d82d0d 143872 poxml_4.8.4+dfsg-1_amd64.deb
 5d3026df0b6cdce4629b5acc765568b53a6cbd2b 2182750 
umbrello_4.8.4+dfsg-1_amd64.deb
 c257062e9e0357f19d69983d6f16081d42e95d1c 1048090 

Accepted python-ws4py 0.2.4-1 (source all)

2013-01-30 Thread Stein Magnus Jodal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 13 Dec 2012 22:19:39 +0100
Source: python-ws4py
Binary: python-ws4py python3-ws4py
Architecture: source all
Version: 0.2.4-1
Distribution: experimental
Urgency: low
Maintainer: Stein Magnus Jodal stein.mag...@jodal.no
Changed-By: Stein Magnus Jodal stein.mag...@jodal.no
Description: 
 python-ws4py - WebSocket library for Python (Python 2)
 python3-ws4py - WebSocket library for Python (Python 3)
Changes: 
 python-ws4py (0.2.4-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 d5a27ced0f2888a8f925ec801125aeb7c79d2a10 2122 python-ws4py_0.2.4-1.dsc
 dbf7cf463399fbcc62010c98858e474d909e7989 44560 python-ws4py_0.2.4.orig.tar.gz
 2dc142ff3d149d95ef528d6fd917f01b1307c0a2 2961 
python-ws4py_0.2.4-1.debian.tar.gz
 ffae51161a4d2da2103c32ad6b07eae7488df858 122144 python-ws4py_0.2.4-1_all.deb
 312e1d040e9df9a45b9c062a3995ca8e024dc9bc 121224 python3-ws4py_0.2.4-1_all.deb
Checksums-Sha256: 
 6e6edb324cb0704be5d715ca381d81b0c83f155348e6287d8b746d291727561a 2122 
python-ws4py_0.2.4-1.dsc
 be50a6f17090f3c5afc42ef3638b318a7da833b6ae9bb49a2aeee633181cc0d7 44560 
python-ws4py_0.2.4.orig.tar.gz
 3ed4a466806894cef7901670334432207df8c81bf32dd8dc1d934ea491145a8c 2961 
python-ws4py_0.2.4-1.debian.tar.gz
 a2bc230a460a22c5c4b5dd4d20066a1bb41baa9730dcee3dff20d254afe5796e 122144 
python-ws4py_0.2.4-1_all.deb
 f2968624f1993721a6cfe2bda613f604a97cab5f1c15c67412eda55cc13d68cd 121224 
python3-ws4py_0.2.4-1_all.deb
Files: 
 82c265dc334f690e44cc89e0ebde11ac 2122 python extra python-ws4py_0.2.4-1.dsc
 dbd0c2c64b43d28a95d09d1535510484 44560 python extra 
python-ws4py_0.2.4.orig.tar.gz
 c97ccf03ce410cfd58426d84dce8b3f5 2961 python extra 
python-ws4py_0.2.4-1.debian.tar.gz
 c3c6f70c4af0cd23d4526c4352dc1d59 122144 python extra 
python-ws4py_0.2.4-1_all.deb
 f7ed92cf19808059937d01406cb1e78f 121224 python extra 
python3-ws4py_0.2.4-1_all.deb

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

iQIcBAEBAgAGBQJQ00D3AAoJELZaSHHKGdcXzQoQAIMVCxbNh4YlkEe/P3LDt1sG
l9BYQmJuf9AJGu4fRhOk1cPEQiliK9A4LP1y2A1Wdxz8/Epocwvz+KVxtrVN8iEM
WnBet5X3Pao8zzs77FqBgxf7tXgrLDR8c55quOor5a6x/tiBsM8mTTzNVoVIxYG0
RcNuU+CNibH9UkomFp1MbUwvL5MOdJG6alixY7V7o67J5a5FlM58EhrJ8QuIWzqj
T249PUyEBCbcdWAbG8x/VayRyFJ2EWI2jTzAAiRjMdHpLs21UQbhBeJKfORYLLEb
zUPR82vCFjgqkxRMFdely6cnmr4yOUnBj5YvkpZ3cRx721si2nXMGvQU+0nkZupO
gGyljghMS0zSNWHnKjyWeCTvMNxOP/ZHlBXE/XyB/CuPrwJgnR904VhP0AYqsocI
Shc6bfZRaEvzZcKA5lqnEZno9wsb6WnVXDEtF1B8CPbzja6xiQa7jHaIQkMLSeOI
LlfJsCk1T9Q7bhLo3WXNfllRrQh9iiGCRp5oDazMdATYRX7VAEetGb87scIbuueM
2oVt83VrEcQKVKij7e7ggkyKjFb6ya3/hN3hVLkJmBmricU3PBQgii1hEOs92Hij
UzZu0MCUI88linGsIkWC+cHNmDL6Fos7A1YuTL2Dic2NMjGMl5/7o71fjHh/BleM
a1CaIgy/wYy27APc673+
=jCmD
-END PGP SIGNATURE-


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



Accepted python-extras 0.0.2-1 (source all)

2013-01-30 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 13 Dec 2012 06:31:35 +
Source: python-extras
Binary: python-extras
Architecture: source all
Version: 0.0.2-1
Distribution: experimental
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 python-extras - extensions to the Python standard library
Closes: 695833
Changes: 
 python-extras (0.0.2-1) experimental; urgency=low
 .
   * Initial release (Closes: #695833).
Checksums-Sha1: 
 e3970439ae40d1d56159ae0d66852224c6f4a214 1420 python-extras_0.0.2-1.dsc
 770e257164dd3e9c6e9d1cdd0c948ed3a3eaccdf 5520 python-extras_0.0.2.orig.tar.xz
 34b2a98f70c3a1aeeec6d6ce096a49515be23958 2382 
python-extras_0.0.2-1.debian.tar.gz
 b1d65136262e2f722e85f3a212366edd0440e2c6 6620 python-extras_0.0.2-1_all.deb
Checksums-Sha256: 
 7031ec37341349dc318adfa8f21fa0844c94998b2eeb5180799ee378638e13b5 1420 
python-extras_0.0.2-1.dsc
 ea8240e05bae78a976b4568743457411d0c6c2d69afb0854d5a099ea391533bb 5520 
python-extras_0.0.2.orig.tar.xz
 130204f0ec88d3f40c54a59840e03069e58cac2923c30dd13cdee8a9e31d0326 2382 
python-extras_0.0.2-1.debian.tar.gz
 8716e5512052a9ddf32a5deefbda3672a71a169fd5e1b5639e72f9381e0159b1 6620 
python-extras_0.0.2-1_all.deb
Files: 
 b463ef736741a330be20161dbeb8870e 1420 python optional python-extras_0.0.2-1.dsc
 538b38b05478466817693019b8e1d42a 5520 python optional 
python-extras_0.0.2.orig.tar.xz
 21fd24d4bb4161a4f84e731e93b052ce 2382 python optional 
python-extras_0.0.2-1.debian.tar.gz
 878071695ed78fcfc49cb297f6f919c1 6620 python optional 
python-extras_0.0.2-1_all.deb

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

iEYEARECAAYFAlDS298ACgkQl4M9yZjvmkmVkQCgwAE5FaLT4Q/XRqOjfQqhCXtU
kzQAnRAZwyaeI2/L24xo7BasYFwVZ7bX
=iTBS
-END PGP SIGNATURE-


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



Accepted python-django-appconf 0.5-1 (source all)

2013-01-30 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 14 Oct 2012 11:45:53 +
Source: python-django-appconf
Binary: python-appconf
Architecture: source all
Version: 0.5-1
Distribution: experimental
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 python-appconf - helper class for handling configuration defaults of packaged 
apps
Changes: 
 python-django-appconf (0.5-1) experimental; urgency=low
 .
   * Initial release.
Checksums-Sha1: 
 a474ca5542e5089ae5c0e1645e6fcb164ce2a6b1 1586 python-django-appconf_0.5-1.dsc
 fa9f759b7d1a9bd82c588b22522c3d88e574eeba 12536 
python-django-appconf_0.5.orig.tar.xz
 ec5541fa38dd38a5cf7179d57f832f82202f13bd 2301 
python-django-appconf_0.5-1.debian.tar.gz
 6734770fb6026e5769875a9e8db1d104742c 8024 python-appconf_0.5-1_all.deb
Checksums-Sha256: 
 a437ae5cf26b04a7569c2711f154f9299849fd33101d27ba08dece36cbfa1439 1586 
python-django-appconf_0.5-1.dsc
 84bace073f32263f9d8835a969820b4c674d7ba29ced31fe11ecfdba29d76429 12536 
python-django-appconf_0.5.orig.tar.xz
 15b85697e7cb7b982b9a5d493d5301960c6309c0f390ef16e57545979d19ad27 2301 
python-django-appconf_0.5-1.debian.tar.gz
 63540311200ddd68fc45ece1d2ebd1295687dc4c25d96bdc2c1ce554b77f920a 8024 
python-appconf_0.5-1_all.deb
Files: 
 de2a83500c9b1b11004846e705ded533 1586 python extra 
python-django-appconf_0.5-1.dsc
 2c04daf3d00e30026fde309ca16ecb88 12536 python extra 
python-django-appconf_0.5.orig.tar.xz
 91e8e7fa1a2163dd7ea110a8784a4671 2301 python extra 
python-django-appconf_0.5-1.debian.tar.gz
 7519eb91a1beb278307c823c6b552bc1 8024 python extra python-appconf_0.5-1_all.deb

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

iEYEARECAAYFAlDPFFUACgkQl4M9yZjvmklWqACfddfiq3HzAWFV87mi8xkT0IN4
mHAAoPGvYj25+XVNnyib7MiD1elQTRpa
=xHMI
-END PGP SIGNATURE-


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



Accepted python-swiftclient 1:1.2.0+git1.2be776c2-1 (source all)

2013-01-30 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 17 Dec 2012 14:39:57 +
Source: python-swiftclient
Binary: python-swiftclient
Architecture: source all
Version: 1:1.2.0+git1.2be776c2-1
Distribution: experimental
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 python-swiftclient - Client libary for Openstack Swift API
Changes: 
 python-swiftclient (1:1.2.0+git1.2be776c2-1) experimental; urgency=low
 .
   * New snapshot release
   * Add depend on python-keystoneclient
   * Now using openstack-pkg-tools for the debian/rules.
Checksums-Sha1: 
 b8e415b85b510204dfbbcba886a9654a8b3c7561 1752 
python-swiftclient_1.2.0+git1.2be776c2-1.dsc
 0cac8b71a31e2a769c9a669fc74bdb4dfc4565d8 32668 
python-swiftclient_1.2.0+git1.2be776c2.orig.tar.xz
 b98a5e05a9ed8aff689c5376ea633feac4fed5e8 11611 
python-swiftclient_1.2.0+git1.2be776c2-1.debian.tar.gz
 7c42960c16c309842c4ea5bc84b02bf5c6451a98 33932 
python-swiftclient_1.2.0+git1.2be776c2-1_all.deb
Checksums-Sha256: 
 35bbcf9ea078e6a7a852d2b99e594d3e58daf188891a3c1f1f3ebd8eb479426a 1752 
python-swiftclient_1.2.0+git1.2be776c2-1.dsc
 13ce0cfa3f168077beb2f88b326c1cbe0846e09c41de92361d7cbe8c16597159 32668 
python-swiftclient_1.2.0+git1.2be776c2.orig.tar.xz
 96a50b42381cb02be8606ead3a00e38714a6cdbe5d4608c1069605c3bce43fb2 11611 
python-swiftclient_1.2.0+git1.2be776c2-1.debian.tar.gz
 82c7c22d6b0f725baaa3c83779cf0e5439400426b909df0d0cf4a7cf8b431bd6 33932 
python-swiftclient_1.2.0+git1.2be776c2-1_all.deb
Files: 
 50a32db43c5d3e59b55b22bde0a81298 1752 python extra 
python-swiftclient_1.2.0+git1.2be776c2-1.dsc
 2cd06f8abe44630dc4ae1d8a3db1d062 32668 python extra 
python-swiftclient_1.2.0+git1.2be776c2.orig.tar.xz
 e502a5892205320f57a5a06edae49c86 11611 python extra 
python-swiftclient_1.2.0+git1.2be776c2-1.debian.tar.gz
 89fae20a1796acb85f773d48377b7de7 33932 python extra 
python-swiftclient_1.2.0+git1.2be776c2-1_all.deb

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

iEYEARECAAYFAlDPL2kACgkQl4M9yZjvmkmAHwCfdyP2ftXbGqf718Hgz9BCfGAK
Q7MAniPvEd/1fQMYWOUionrsSLL7W0p/
=CLj/
-END PGP SIGNATURE-


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



Accepted dunst 0.5.0-1 (source amd64)

2013-01-30 Thread Michael Stapelberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 30 Jan 2013 21:30:19 +0100
Source: dunst
Binary: dunst
Architecture: source amd64
Version: 0.5.0-1
Distribution: experimental
Urgency: low
Maintainer: Michael Stapelberg stapelb...@debian.org
Changed-By: Michael Stapelberg stapelb...@debian.org
Description: 
 dunst  - dmenu-ish notification-daemon
Changes: 
 dunst (0.5.0-1) experimental; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 2c030cd93d54c969711138e1a469b04a10f4f23f 1920 dunst_0.5.0-1.dsc
 32c1c113b9763b593d3d87e026d81de47a55772d 28521 dunst_0.5.0.orig.tar.bz2
 8f660018237ab7de72e06985e8fa87a7abc02948 3816 dunst_0.5.0-1.debian.tar.gz
 e1dc9ba17622d879737ccc04e828b564ec7f8f47 36296 dunst_0.5.0-1_amd64.deb
Checksums-Sha256: 
 02e96d48134d83466a24e996103c6c3030d3647f9fe1420a97125fa80fcfdcbb 1920 
dunst_0.5.0-1.dsc
 4be8cf366930b297f03078f233f2fec479638d0c69b0e5e75bb49da487684b05 28521 
dunst_0.5.0.orig.tar.bz2
 800b10118f574c85ee09551849111947c8837e55bbafbe0cf40e37ffed73e27a 3816 
dunst_0.5.0-1.debian.tar.gz
 001a78fbf72b8102e8c3650bbfc9d5157b7c7e4650d17586f655935d9d8dddeb 36296 
dunst_0.5.0-1_amd64.deb
Files: 
 10fb7ec68b1136a0ffc0c2d7375d24a4 1920 x11 extra dunst_0.5.0-1.dsc
 3805fd0ef171378cc6ff3a74ce8a4f06 28521 x11 extra dunst_0.5.0.orig.tar.bz2
 79b20863ff075546c0277a4cd95cce46 3816 x11 extra dunst_0.5.0-1.debian.tar.gz
 0206e703e197ec44c855ce2a2bc8d205 36296 x11 extra dunst_0.5.0-1_amd64.deb

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

iQIcBAEBCgAGBQJRCYVtAAoJEE5xYO1KyO4dEAwQANeNIBv4opXFo9Fz3sxwLEpr
BhJjckCmld4zSStHhIcWcJTtux4xUpyARbi4y90J/E+G+co7DqDdk/7Wb04mDP5O
tYPaLQKeOPpsXvgE/qlaiCxageDqV8NNTqQ91joE21d+k+J/dnrM2jisw4c4xkYT
PfAoPhQauK2JjTcElvlFeImfmp2ha6EM5tnWvhkBwKx6zQsqZ8m0r64LgOuj2Q9k
b7nZAWTSYkpg9747mToBmAKJaolBcCkkdnF5Rx5gPR4BJ4RJURcCwapaLP70g2wV
9oyanDl8opU0HPUUv/rTaaSF1cWJrpP75GHGrJvuzuBiS9CEl2n7DLQNo+YPY+6g
z3xelaedwY6xS+c7kBrj4mh8ycLSwHKSOHu+wXgR/jk6Nwjyp9hJOavLb5eEyLfO
Azm8YmPClUH5DR5WQsj+qNRfBZYEQgQ+Bnm9QgU0MtIiaJnwfAnOr1F5NNb7qrm1
aU2Sv+YItkExR8SVZLGMDHyYkEAgtcaLVSYlgV9MTuggM/usAjPCW/5jlN2sf0ua
ltxmkQmBabCyroCIq5sFHZtgjUr9Esx2Vaw3GHZaQoYYWfFrlpm0ulnZ7L0fXK6V
UMfmEJIm7/PSOaaD9o3igKAyfRfwiJVdZYSX+BMDDCoAHjl1cEtIJ5l/q4bs79UQ
PJLuMHopwbWcDOwbquTN
=peTq
-END PGP SIGNATURE-


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



Accepted libvirt 1.0.2-1 (source all i386)

2013-01-30 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 21:06:02 +0100
Source: libvirt
Binary: libvirt-bin libvirt0 libvirt0-dbg libvirt-doc libvirt-dev 
python-libvirt libvirt-sanlock
Architecture: source all i386
Version: 1.0.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian Libvirt Maintainers 
pkg-libvirt-maintain...@lists.alioth.debian.org
Changed-By: Guido Günther a...@sigxcpu.org
Description: 
 libvirt-bin - programs for the libvirt library
 libvirt-dev - development files for the libvirt library
 libvirt-doc - documentation for the libvirt library
 libvirt-sanlock - library for interfacing with different virtualization systems
 libvirt0   - library for interfacing with different virtualization systems
 libvirt0-dbg - library for interfacing with different virtualization systems
 python-libvirt - libvirt Python bindings
Changes: 
 libvirt (1.0.2-1) experimental; urgency=low
 .
   * [7adf6b4] New upstream version 1.0.2
   * [1156772] Drop Don-t-fail-the-build-without-libcurl-and-esx.patch
 applied upstream
   * [5d66d5a] Rediff patches
Checksums-Sha1: 
 6f1f09508d63b19eae8e4e43e947886586bb7612 2515 libvirt_1.0.2-1.dsc
 ad8063794bb70e7538a3437412dd0c75950b81e2 22971729 libvirt_1.0.2.orig.tar.gz
 4032927cec78cc70e8424cc7af23b38df4189a4d 37846 libvirt_1.0.2-1.debian.tar.gz
 1e1042541ad966dc93b8db12501d862d29088842 2689314 libvirt-doc_1.0.2-1_all.deb
 dc9b7555e116a5e436f3907ca715ee7c00268a1e 4765384 libvirt-bin_1.0.2-1_i386.deb
 6675cde5323e2c280089440068cb9c9804d135bb 2534770 libvirt0_1.0.2-1_i386.deb
 ef018569ed5f82c114afa2ba97dce381e29e1590 10597422 libvirt0-dbg_1.0.2-1_i386.deb
 3b7c319fe15cc98d12b41fd73888c0f0cbcd33aa 2915572 libvirt-dev_1.0.2-1_i386.deb
 a4827589384012fc06a36a664f0c7fd1d3aa6a45 1906236 
python-libvirt_1.0.2-1_i386.deb
 3c984ea43a9faa568a5cd5b15185c99404de6aa7 1525344 
libvirt-sanlock_1.0.2-1_i386.deb
Checksums-Sha256: 
 09eaa0a566d9e94aaeafcdeb0534f330c9e95152890487284339d73c0a249d5a 2515 
libvirt_1.0.2-1.dsc
 9b8c2752f78658b65ef1c608b3775be0978d60855a9b5e2778f79c113201c179 22971729 
libvirt_1.0.2.orig.tar.gz
 99a2931a3d9f5858e0733158bdfb8370be1d899dd25ac0584f43b3c86bb569ec 37846 
libvirt_1.0.2-1.debian.tar.gz
 08b5c0443c6985effcbeff91a07f62f2fc1f9fecc8b6727980e35f1c25394afb 2689314 
libvirt-doc_1.0.2-1_all.deb
 052d4f9be155995d9bed7ac68583e389802e1c1e17dc2fce5bbca471c1895be8 4765384 
libvirt-bin_1.0.2-1_i386.deb
 12926364284db92353640c0f0bcc948a637caabef7dc3b1817fa52cd8714288a 2534770 
libvirt0_1.0.2-1_i386.deb
 92551bcb26060d45c5f0654de04ceed05a31be0f0294c34d5cd4d3fa98fc934c 10597422 
libvirt0-dbg_1.0.2-1_i386.deb
 a2d135913e3706506f0b1a987ec669a6229f4ea758cb68622d2415500492f071 2915572 
libvirt-dev_1.0.2-1_i386.deb
 6cb01d75a790ede25c89f23a88e0c12f85a232074ae653ac1171b912cb0c93b2 1906236 
python-libvirt_1.0.2-1_i386.deb
 8669a43b293c37c41e0e8eb3bcc178bf3e11e27a7e681b126de55cb309ed37cd 1525344 
libvirt-sanlock_1.0.2-1_i386.deb
Files: 
 d86b727240e7d2dee85fbbe320d557a5 2515 libs optional libvirt_1.0.2-1.dsc
 7e268ed702c4331d393e5b43449cae13 22971729 libs optional 
libvirt_1.0.2.orig.tar.gz
 098064667eb2f5a7e8ff5e57a7d67e13 37846 libs optional 
libvirt_1.0.2-1.debian.tar.gz
 624805b4b69d63f2443561ba59dbd0a0 2689314 doc optional 
libvirt-doc_1.0.2-1_all.deb
 e2ad2c280aa1508f3d8a6166e8ba8ac4 4765384 admin optional 
libvirt-bin_1.0.2-1_i386.deb
 d107de5c2203da8fdaee1599b5a066d7 2534770 libs optional 
libvirt0_1.0.2-1_i386.deb
 41010b4667158eddb86329fc8e0d4719 10597422 debug extra 
libvirt0-dbg_1.0.2-1_i386.deb
 7ca54cb94ccf2dcb53b02b53160534a5 2915572 libdevel optional 
libvirt-dev_1.0.2-1_i386.deb
 85b837041e2bd64181394ffd7f2154a9 1906236 python optional 
python-libvirt_1.0.2-1_i386.deb
 bac42db4c3b086f4cf7cfa830f7346fa 1525344 libs extra 
libvirt-sanlock_1.0.2-1_i386.deb

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

iD8DBQFRCYLrn88szT8+ZCYRAlJDAJ98uGWT9t8g4uVAj6Pci5WLBD88SQCeNzOC
pICSHuPXwXsT5KPrsybViB0=
=WYbW
-END PGP SIGNATURE-


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



Accepted mscompress 0.4-1 (source amd64)

2013-01-30 Thread Michael Stapelberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 30 Jan 2013 21:14:52 +0100
Source: mscompress
Binary: mscompress
Architecture: source amd64
Version: 0.4-1
Distribution: experimental
Urgency: low
Maintainer: Michael Stapelberg stapelb...@debian.org
Changed-By: Michael Stapelberg stapelb...@debian.org
Description: 
 mscompress - Microsoft compress.exe/expand.exe compatible (de)compressor
Closes: 64
Changes: 
 mscompress (0.4-1) experimental; urgency=low
 .
   * New maintainer. (Closes: #64)
   * New upstream release.
   * Bump Standards-Version to 3.9.4 (no changes necessary).
   * Bump debian/compat to level 9
   * Simplify debian/rules to minimum debhelper rule.
   * Add debian/watch.
   * Update debian/copyright to machine-readable copyright format.
Checksums-Sha1: 
 86e84516258d21cfcecf1806313d1fcb4111a674 1887 mscompress_0.4-1.dsc
 8b37aa049d6911943f4c951f171f00d426295f24 13279 mscompress_0.4.orig.tar.gz
 5a4a740e5ca80e85f69f07de9966f5fcb77a9a07 2251 mscompress_0.4-1.debian.tar.gz
 2509c2010487ab637112abebbfe4c9233375880d 9886 mscompress_0.4-1_amd64.deb
Checksums-Sha256: 
 c17e22db2de3228fa550fd8da37a7c9cbeb2e02d732d16fe575fbb89b19c7f68 1887 
mscompress_0.4-1.dsc
 a17e505a02c36aaf2edab5bd2b8fcd6bb22e46016afbe49a400031e4f287e5f6 13279 
mscompress_0.4.orig.tar.gz
 4a0ba87a06560d071fe4283526af0ada8498e467cfc075dce0c4771871aba419 2251 
mscompress_0.4-1.debian.tar.gz
 e7dba980399c57a2f70b3ae06cbcb8a89ede2ce31f32bbcc927df10c36a0a2ee 9886 
mscompress_0.4-1_amd64.deb
Files: 
 52a4f1e4c92cd26c367367a5b542d6cb 1887 otherosfs extra mscompress_0.4-1.dsc
 4568193e3ccb24a15fcb8a6fb74fc1e4 13279 otherosfs extra 
mscompress_0.4.orig.tar.gz
 375b0daf9bd3115d10c1d1b4acc24354 2251 otherosfs extra 
mscompress_0.4-1.debian.tar.gz
 4efda545153e67afa9a32ebbb6bcfc4c 9886 otherosfs extra 
mscompress_0.4-1_amd64.deb

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

iQIcBAEBCgAGBQJRCX+oAAoJEE5xYO1KyO4d6aIQAJ2GNX3IrsRe6ArUONPDYPcw
9JS5fHApWMpWhJJmAVWSFgC19Ac89sje3lyAHiv3KmRZCJsigXgGRuGUvb2HCsvD
aiMEzNcWHgVnJW9omsaq+J72+mRaZ2Kh8JcATsUZbdUTX5yS1w3Z9BKdBB1BOVRb
Eiwzu1JSZ3er36JDo2QwR3bj1WFz3W/Z6kERcwbl8wruz/vgCV/TGeYW7vXiL2mY
LOW84rHyMAbQBk0rKdCcNbn4OkQTXnto5GHMjyO6zk/HeEaRKImXAyBtIJqvr36j
hMfNPFTQJujc0WR99YAMCt3uW7Pr6mezKaPNVz7vNM+HNY2YgkgkPFJJwAg9lSxa
1Y8eBNTP0FG/vj7HvNzrDY5SMVXwLpS2htn5Y8dYTcdazR3Zm7d2eo6s9bRMNGJf
jwHjVrcXJUjoV0pYH6onnjrS2/WKXgxmc8wSqsiGwTtXcgFuoG7fOg2zgkAHb/0h
E4Rj7FzH9V7Tc92XSoVZfeow1ohtY3+r9V0JgYv00Xy/Ty0pmNRXQueZf+y0wUn2
Fj6GAG4qYN1nb9M0oAePuxV5OukSWiASLpqKC/VAB1PxV4H18NxLhH40pyaH77p4
0x+73R/qsM0bvL62V4YIYyKFyMG0K8LG7ui9ULXX8sfMIFilcTXkPGCTWOhLJ4vt
mcJkNzuhYWL1B9/gTkyA
=YSti
-END PGP SIGNATURE-


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



Accepted typo3-src 4.5.19+dfsg1-4.1 (source all)

2013-01-30 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 28 Jan 2013 21:23:03 +0100
Source: typo3-src
Binary: typo3-src-4.5 typo3-database typo3-dummy typo3
Architecture: source all
Version: 4.5.19+dfsg1-4.1
Distribution: unstable
Urgency: low
Maintainer: Christian Welzel gaw...@camlann.de
Changed-By: gregor herrmann gre...@debian.org
Description: 
 typo3  - web content management system (meta)
 typo3-database - web content management system (database)
 typo3-dummy - web content management system (basic site structure)
 typo3-src-4.5 - web content management system (core)
Closes: 698631
Changes: 
 typo3-src (4.5.19+dfsg1-4.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix copyright file missing after upgrade (policy 12.5):
 replace directory with symlink in typo3.postinst.
 Thanks Andreas Beckmann for the bug report and the template for the fix.
 (Closes: #698631)
Checksums-Sha1: 
 1807743c0548512609715cceb062d769cc8fef56 2072 typo3-src_4.5.19+dfsg1-4.1.dsc
 55ad5e63d4f76d86f51c92596bd5b74dc158fbf0 385661 
typo3-src_4.5.19+dfsg1-4.1.debian.tar.gz
 d4be6754228b875bd4c5ecd9df7e3ada71495aa2 20059020 
typo3-src-4.5_4.5.19+dfsg1-4.1_all.deb
 08fe464d99bfa9bff13f38d08cc1727acb094d5d 282412 
typo3-database_4.5.19+dfsg1-4.1_all.deb
 42da97c2f5532c0dd70522c7befab692884b9368 290676 
typo3-dummy_4.5.19+dfsg1-4.1_all.deb
 1c830e9a1a24dfca05ec71644b5ae44d0734ae10 1386 typo3_4.5.19+dfsg1-4.1_all.deb
Checksums-Sha256: 
 390f5fd0f5703aef7e971ecfc44655d49152c0c3edb55263d153d678015535c0 2072 
typo3-src_4.5.19+dfsg1-4.1.dsc
 19c8ac73a0d4b6809d4718ddb89529349ea24855f54d7a00d7d67663be682efa 385661 
typo3-src_4.5.19+dfsg1-4.1.debian.tar.gz
 c86e9a5783e8580f67c08c303b5b61021ac9b69df7bf69a655820d78dee5cf52 20059020 
typo3-src-4.5_4.5.19+dfsg1-4.1_all.deb
 f46e9b37c92e234d3c4d4f61c159f75993251b1a05266b18106cfd6af1b4598f 282412 
typo3-database_4.5.19+dfsg1-4.1_all.deb
 7cfb44fed327ec5dfeaa6f0aba02be4d8a46a3f3026f760ce4b1d4b0d25042f3 290676 
typo3-dummy_4.5.19+dfsg1-4.1_all.deb
 faecc47e7af1b693fdbc99e932d2d3877aff0722a9f2058e5561a83f4d67efcc 1386 
typo3_4.5.19+dfsg1-4.1_all.deb
Files: 
 1868f4709fdb9b13a145a522c4de0e10 2072 web optional 
typo3-src_4.5.19+dfsg1-4.1.dsc
 df517095a7e89e136415d195493ee20e 385661 web optional 
typo3-src_4.5.19+dfsg1-4.1.debian.tar.gz
 19ac7c840004a2573848b87c6d73b4c2 20059020 web optional 
typo3-src-4.5_4.5.19+dfsg1-4.1_all.deb
 079db024e6e2ee1d2a353a59c666427f 282412 web optional 
typo3-database_4.5.19+dfsg1-4.1_all.deb
 978ab7fd552cd109d0ae78a64a744b31 290676 web optional 
typo3-dummy_4.5.19+dfsg1-4.1_all.deb
 c162f9bc6e069d09766d1fb626ee17c8 1386 web optional 
typo3_4.5.19+dfsg1-4.1_all.deb

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

iQIcBAEBCAAGBQJRBt5wAAoJELs6aAGGSaoGrZcQAIIQw4HxPTsSK42cd25RIwPh
r+K8fpyBEzdW+2bRahb0WRsKKxr2O2VVm+3se/weM39kKTXL43HxFJF4tetHGPKM
pI2EojKwyuy3EyGVziIk7wvOndGWAJnFN14BIA0Ztyym9g+oWqlc57mfcnraSTb0
nGE7pDwSednVR4MP5iBvW9jtqlmwgJ3aL17EA9rz6OHWedK8/fFHYkjJADlFpuds
EiuEcbDo/1Aft/E2uAWHGxZmzd1cAJSgWIjwldZNFN+IpP0GMEUOe+7iCCmKNOnc
PPK+pPlcKaIQQSygf9XyMFYSuPZqmHNqF9a0kAg6ktsJCW2d8Ml/FP/LXuJCB3x/
nvVu7LrPFUSz10k2olRntgSkpmmhabUuc70n5MLJCtiByqif3uAZ8TFirEIQWFAV
8It/6Z1QOFT8aA6vNNM2devX0XaxT97NX0+UIc3eRHKWse0tF9DwvOVxBIgInpBH
dB8FV4gPtjPHzgN1MTpAqZsuq1OPSn41aU2qIHhJmGKpZO4emsBlcaNyWeaALE1a
tmOZnq8JE0WXqQu7sAObrHe93t+S/tKRyqb4BSzeN6ECxzOU/6mUaYlsgnivunHb
tW7utVXSijYZ7P9WMuuCScXbFwT3957HEjMT1FASPjZy0k3faBNKkEM0cmetf94Y
FY4onAtkKyOJlTCsjv85
=KzdY
-END PGP SIGNATURE-


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



Accepted perl-cross-debian 0.0.3 (source all)

2013-01-30 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 30 Jan 2013 20:43:03 +
Source: perl-cross-debian
Binary: perl-cross-debian
Architecture: source all
Version: 0.0.3
Distribution: experimental
Urgency: low
Maintainer: Neil Williams codeh...@debian.org
Changed-By: Neil Williams codeh...@debian.org
Description: 
 perl-cross-debian - Cross build support for Debian perl configurations
Changes: 
 perl-cross-debian (0.0.3) experimental; urgency=low
 .
   * Add the current patches to the package.
   * Extend the manpages.
Checksums-Sha1: 
 125f1d436b68027dae82b4a5e6f6b87edeafa64d 1646 perl-cross-debian_0.0.3.dsc
 efff55b63b3b013ca3880f377dacd830d0d7f4b3 490025 perl-cross-debian_0.0.3.tar.gz
 51f54a2bf5143fa1ed48784715a9164325096496 484626 perl-cross-debian_0.0.3_all.deb
Checksums-Sha256: 
 c006b4e40a5befa87997f59823e2ea5a0fac5211a78512c0233f4d173c895b88 1646 
perl-cross-debian_0.0.3.dsc
 0cb11a07e1b68821b990c88946c0a29712921dd6306b755bedc71c3f984d46eb 490025 
perl-cross-debian_0.0.3.tar.gz
 ed0c41dcfcb5292dc00ca0ce9ffc57949a58b26bf61c08ba2d5e054f0154076c 484626 
perl-cross-debian_0.0.3_all.deb
Files: 
 7493fd2bb67d2f25831d271929899cff 1646 devel extra perl-cross-debian_0.0.3.dsc
 248ac447d188fe54fd3fb87efb522d76 490025 devel extra 
perl-cross-debian_0.0.3.tar.gz
 15da3594419a5bba57c5d17317e35e8b 484626 devel extra 
perl-cross-debian_0.0.3_all.deb

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

iQIcBAEBCAAGBQJRCYnSAAoJEPFn5DyBQ7aCR9gP/263zgi3w8WSg8AMIXjgZlgq
dKQleVrDtUVqbw7E1sW+t/DWBF99aVJaWQ0YtJe3ptLTxqkDdY7fGv94hAIrF4b8
PzJ29/kY/czXk3KrX7PBkoCVfXwOvCL1C4dpBcK+xl1c/Qyqa4jQ78Np3WOc6hDh
uPfJUsKqVUchPfEW1puWlEKWi0exKesxnAUPCuQZjk58WI7h3LSbkO3iiXUcrW9i
VXCP8Btv23f+AVgOt7ciUpBLVvudEJo2tLxsHz0vNWaNtLYJFhJmpGH/N7n87961
UsLKOVzojM+OpP4oXjTu6QeUL3RFKHYsXgMxNg+FM5yh1KhZ5hO7Ze50Mm/ZB7gL
/Z8OGJtnhqnq15x9OdzfrjDtZaXtLkX0Eon89a2raDFszjs34J29gtGtv2YSkszJ
es1sUBKEzbWAdLcG8hetByj7IJk+DdC6paLw3BsE4h6nGl+1EkVIcKwaXNf5jEZj
uumNbkamvSX8GsGKQmhFfsWJZ1N+BcrJN+pTnEUlDtsjg2zFMx1lh68Ggj/ptCvV
ATPdbXKqvCYo+0S6yakgKN1B0lb/8ZeR0u5aqG0x6/jkgeX1Al9gx6fn1E/j4sDL
pOvcTLiWjugNfKsaCnPEmPMkuG2cpRtR95Rq0ySiFxpIK+IwlVE10600fILKNkrC
ZLukP8abHGKXLOvaUFZN
=U6pc
-END PGP SIGNATURE-


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



Accepted dahdi-firmware 2.6.1-2 (source all)

2013-01-30 Thread Tzafrir Cohen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 00:04:32 +0200
Source: dahdi-firmware
Binary: dahdi-firmware-nonfree
Architecture: source all
Version: 2.6.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org
Changed-By: Tzafrir Cohen tzaf...@debian.org
Description: 
 dahdi-firmware-nonfree - DAHDI non-free firmware
Closes: 699104
Changes: 
 dahdi-firmware (2.6.1-2) unstable; urgency=low
 .
   * Move old Zapata bitfiles (*.rbt) to this package (Closes: #699104).
 (Ben Hutchings).
Checksums-Sha1: 
 e035100cdd6901ef139b4cf539c4585e5c393027 1381 dahdi-firmware_2.6.1-2.dsc
 27904ba0b71d69b7dba90f4efd1a5de1866797ba 188440 
dahdi-firmware_2.6.1-2.debian.tar.gz
 3741f370f8c5971773303ffde71d878b6d4b4db3 860952 
dahdi-firmware-nonfree_2.6.1-2_all.deb
Checksums-Sha256: 
 5c9274a761766ed53868d05ccc702104674105f58923a6384b167e66da644c08 1381 
dahdi-firmware_2.6.1-2.dsc
 d22b7d701660772106c2e81e4deb7f4e2f837e6be3e5972e3a2371e14e669254 188440 
dahdi-firmware_2.6.1-2.debian.tar.gz
 5a21e70a0e9518f8e919390aec71dbe8722f4de9783eae16b22659a47ab8e572 860952 
dahdi-firmware-nonfree_2.6.1-2_all.deb
Files: 
 fb445e941217bf2dd2e9ed2e9347de74 1381 non-free/comm extra 
dahdi-firmware_2.6.1-2.dsc
 e117259f74a7442789a7b7788a9c6c42 188440 non-free/comm extra 
dahdi-firmware_2.6.1-2.debian.tar.gz
 4614dd1cc382cc2f82b7c4e63a696557 860952 non-free/comm extra 
dahdi-firmware-nonfree_2.6.1-2_all.deb

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

iEYEARECAAYFAlEJjIUACgkQxArWdkN9MovxMQCdEJ+im5k1G0P9rYTAFONxmxtX
xNkAnRj+72WNolocDrYjfvfadgaOQJZQ
=t5h1
-END PGP SIGNATURE-


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



Accepted klog 0.6.0-1 (source amd64)

2013-01-30 Thread Jaime Robles
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 20:07:14 +
Source: klog
Binary: klog
Architecture: source amd64
Version: 0.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Jaime Robles ja...@debian.org
Changed-By: Jaime Robles ja...@debian.org
Description: 
 klog   - KDE ham radio logging program
Closes: 654328 654331
Changes: 
 klog (0.6.0-1) unstable; urgency=low
 .
   * New upstream release
   * Typo Frecuency changed to Frequency in a tooltip. (Closes: #654328)
   * Bug fixed: Typo/wishlist Numb changed to Number in main table. 
(Closes: #654331)
   * Bug fixed: Typo/wishlist UTC changed to Time in main table. (Closes: 
#654331)
Checksums-Sha1: 
 0d171b591cd81bdd413a5b4f1c23a6a144f753af 1113 klog_0.6.0-1.dsc
 11d4ca10c77410ab922554ff6312f4a77532dc48 721827 klog_0.6.0.orig.tar.gz
 b793184cb444c7e26761f39d44bce6c9728c73bd 4313 klog_0.6.0-1.diff.gz
 54c27a96e18d85c31395a2aa433de02900ae0165 670542 klog_0.6.0-1_amd64.deb
Checksums-Sha256: 
 c124fb4fe9688fbb3cd19847bdceb5f125379ffeefdc0b3a17489aa3f541fc3c 1113 
klog_0.6.0-1.dsc
 00c0aee018cc5ae83cecfc891b6c2741f891c31c9baa39febe0e166f53af9aab 721827 
klog_0.6.0.orig.tar.gz
 4636b24799a48e57446da992ed942334d5a1a8c603f26da3c4ea526df1025167 4313 
klog_0.6.0-1.diff.gz
 b763baccca51df413cd23c396b133979299281399e9f6eadab5981d96840fa37 670542 
klog_0.6.0-1_amd64.deb
Files: 
 d380874c9486417653d4d5477f9b8abb 1113 hamradio optional klog_0.6.0-1.dsc
 98e4483393fcf3e7094c971e439bdfd7 721827 hamradio optional 
klog_0.6.0.orig.tar.gz
 76d33d59dc5aaca93a0c0e17f069977f 4313 hamradio optional klog_0.6.0-1.diff.gz
 d6e5b8d905266a15c2838f6eb0cee5b4 670542 hamradio optional 
klog_0.6.0-1_amd64.deb

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

iEYEARECAAYFAlEJj5AACgkQER46oL+8yYUwAgCfed9XuLcNuTbzK3VYh7Tth4Qy
SoAAn19eApxPc1fuEOooWCTXWL5aOzp/
=RcNa
-END PGP SIGNATURE-


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



Accepted network-manager 0.9.4.0-10 (source amd64)

2013-01-30 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 30 Jan 2013 01:12:53 +0100
Source: network-manager
Binary: network-manager network-manager-dev libnm-glib4 libnm-glib-dev 
libnm-glib-vpn1 libnm-glib-vpn-dev libnm-util2 libnm-util-dev 
network-manager-dbg gir1.2-networkmanager-1.0
Architecture: source amd64
Version: 0.9.4.0-10
Distribution: unstable
Urgency: low
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gir1.2-networkmanager-1.0 - GObject introspection data for NetworkManager
 libnm-glib-dev - network management framework (GLib interface)
 libnm-glib-vpn-dev - network management framework (GLib interface)
 libnm-glib-vpn1 - network management framework (GLib VPN shared library)
 libnm-glib4 - network management framework (GLib shared library)
 libnm-util-dev - network management framework (development files)
 libnm-util2 - network management framework (shared library)
 network-manager - network management framework (daemon and userspace tools)
 network-manager-dbg - network management framework (debugging symbols)
 network-manager-dev - network management framework (development files)
Closes: 699292
Changes: 
 network-manager (0.9.4.0-10) unstable; urgency=low
 .
   * debian/patches/21-carrier-detect.patch: ensure carrier is always on for
 devices that don't support detection (rh #816719). (Closes: #699292)
 Patch cherry-picked from upstream Git.
Checksums-Sha1: 
 43fbef390528d29c454572e3be052f85b7d4e019 2975 network-manager_0.9.4.0-10.dsc
 837eb337d1bfc21cf18b88059f9228b1398b7db6 46457 
network-manager_0.9.4.0-10.debian.tar.gz
 695073eb30f49b80f7585ac260f514f1b4cfd6de 866656 
network-manager_0.9.4.0-10_amd64.deb
 ec645ccd22ee7841f650b1d0c5108feff514ddd4 275660 
network-manager-dev_0.9.4.0-10_amd64.deb
 8a4a718a28edaf67e12a4989bbf8daddd549c7cb 295380 
libnm-glib4_0.9.4.0-10_amd64.deb
 26ff5ce7018b2fd22d0cca6457e08232ded64727 389108 
libnm-glib-dev_0.9.4.0-10_amd64.deb
 7f983a79248d79ce6c49f7b1cf5e4bffad6a70ce 239158 
libnm-glib-vpn1_0.9.4.0-10_amd64.deb
 b9f18f762db92598596610d54a1d1f92d450dc73 231832 
libnm-glib-vpn-dev_0.9.4.0-10_amd64.deb
 066ffab4fb59ad71e3320b4a33f503c939f5e893 332096 
libnm-util2_0.9.4.0-10_amd64.deb
 2d464fe78ed76162b251c492d43948b4c85b23b1 370650 
libnm-util-dev_0.9.4.0-10_amd64.deb
 647b1847b315527dc41d88e2745b9753a7e82fed 1726068 
network-manager-dbg_0.9.4.0-10_amd64.deb
 08e8c6a6adbb0bf00bcdac34c4c35b8e899b2559 259034 
gir1.2-networkmanager-1.0_0.9.4.0-10_amd64.deb
Checksums-Sha256: 
 ed519394e64fd95e52a9930f2497b32fe92cd53729df3d9625fb5c6a873248f4 2975 
network-manager_0.9.4.0-10.dsc
 d5783d12e3c13c6bea6c19675d728ecf5e5db7684be7894202e79d559b718e9b 46457 
network-manager_0.9.4.0-10.debian.tar.gz
 8253ae62fa41b628d95e42b93ac3d25bb69f3ac30de56a4f14fc17156b83a043 866656 
network-manager_0.9.4.0-10_amd64.deb
 d800727bdfa64c2173ca22dbf2033a484acda96d0bc9ad2f0752762cef3d7c99 275660 
network-manager-dev_0.9.4.0-10_amd64.deb
 1a3c0a49cac1fee751b19ee8ebca7259e8e38a2e285a29516d8540d4c651dd7c 295380 
libnm-glib4_0.9.4.0-10_amd64.deb
 5503233674bb4f5c474e61a603f7733edb955bce01216d2c9567270ad0e7791b 389108 
libnm-glib-dev_0.9.4.0-10_amd64.deb
 53b2e7952847bc58f4ff819b8f2e9db0069fb491909261bb334c8956040a2a0d 239158 
libnm-glib-vpn1_0.9.4.0-10_amd64.deb
 2f9de80aedf859faf23fefa78035cd7affd5df99b983d2a1944414dffdea5d81 231832 
libnm-glib-vpn-dev_0.9.4.0-10_amd64.deb
 8e28e90f7495f0193953dd33a243fb67aca04fd092f894d677ff24406155ebe0 332096 
libnm-util2_0.9.4.0-10_amd64.deb
 2389f31a215ec1679d119f0b682827d083cac12637789220b5c22bdf249dd9c8 370650 
libnm-util-dev_0.9.4.0-10_amd64.deb
 a972ca13d48d75eba86267a0b7a772338133f0f06db8ad380761c38224ba15e1 1726068 
network-manager-dbg_0.9.4.0-10_amd64.deb
 7bf34bbd6a81484a46bfe18c8a05d099d7d211f9b407dd117c06e9c437fa 259034 
gir1.2-networkmanager-1.0_0.9.4.0-10_amd64.deb
Files: 
 1901bce28ba8a33042da7807ceca6d62 2975 net optional 
network-manager_0.9.4.0-10.dsc
 7ba077172b977625b1d5e534e76fa901 46457 net optional 
network-manager_0.9.4.0-10.debian.tar.gz
 fdac932e6f132d4640974c0b16705770 866656 net optional 
network-manager_0.9.4.0-10_amd64.deb
 420356cc8c8b802dd10042d4997b5bad 275660 devel optional 
network-manager-dev_0.9.4.0-10_amd64.deb
 9e2979bc71e004ff2174e38a3479c83f 295380 libs optional 
libnm-glib4_0.9.4.0-10_amd64.deb
 98ab1652d9321acab29967f549f52320 389108 libdevel optional 
libnm-glib-dev_0.9.4.0-10_amd64.deb
 014cfafc2970c70dfb2ff3d50683cce5 239158 libs optional 
libnm-glib-vpn1_0.9.4.0-10_amd64.deb
 0ad2c95e1fad1c7f861f18a518df31a6 231832 libdevel optional 
libnm-glib-vpn-dev_0.9.4.0-10_amd64.deb
 37798a37148f931e0293abdca5acc100 332096 libs optional 
libnm-util2_0.9.4.0-10_amd64.deb
 ae9b4bda085a493653845ebfcb247f83 370650 libdevel optional 
libnm-util-dev_0.9.4.0-10_amd64.deb
 2b65b6db3466505014709c7ba411c710 1726068 debug extra 
network-manager-dbg_0.9.4.0-10_amd64.deb
 f2cd856886eb3e0a7d981f65ed48fe22 

Accepted bind9 1:9.8.4.dfsg.P1-5 (all amd64 i386 source)

2013-01-30 Thread LaMont Jones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 14:04:35 -0700
Source: bind9
Binary: bind9 bind9utils bind9-doc host bind9-host libbind-dev libbind9-80 
libdns88 libisc84 liblwres80 libisccc80 libisccfg82 dnsutils lwresd
Architecture: all amd64 i386 source
Version: 1:9.8.4.dfsg.P1-5
Distribution: unstable
Urgency: low
Maintainer: LaMont Jones lam...@debian.org
Changed-By: LaMont Jones lam...@debian.org
Closes: 698641
Description: 
 bind9-doc  - Documentation for BIND
 bind9-host - Version of 'host' bundled with BIND 9.X
 bind9  - Internet Domain Name Server
 bind9utils - Utilities for BIND
 dnsutils   - Clients provided with BIND
 host   - Transitional package
 libbind9-80 - BIND9 Shared Library used by BIND
 libbind-dev - Static Libraries and Headers used by BIND
 libdns88   - DNS Shared Library used by BIND
 libisc84   - ISC Shared Library used by BIND
 libisccc80 - Command Channel Library used by BIND
 libisccfg82 - Config File Handling Library used by BIND
 liblwres80 - Lightweight Resolver Library used by BIND
 lwresd - Lightweight Resolver Daemon
Changes: 
 bind9 (1:9.8.4.dfsg.P1-5) unstable; urgency=low
 .
   [LaMont Jones]
 .
   * Properly acknowledge 1:9.8.1.dfsg.P1-4.4: [Philipp Kern]
 - Fix CVE-2012-4244. Thanks to Moritz Mühlenhoff for providing the patch.
 .
   [Paul Vixie]
 .
   * Include rpz/rrl patches from http://www.redbarn.org/dns/ratelimits.
 Closes: #698641
Checksums-Sha1: 
 a6bd60dfe10716ce3a4cf0b27b71d65dcfe89f24 369710 bind9_9.8.4.dfsg.P1-5_amd64.deb
 efcff38cf4bc402299446e710e379c9e3a0d624a 124288 
bind9utils_9.8.4.dfsg.P1-5_amd64.deb
 dfe5294037fcaead19570ed4a6ba5417b24ef0f2 73034 
bind9-host_9.8.4.dfsg.P1-5_amd64.deb
 e01d5859c641e9d1c87ce78f3064ab0c32835dc0 1578498 
libbind-dev_9.8.4.dfsg.P1-5_amd64.deb
 f43a523d5112ce6a26bf3b412e1c346efe369c6b 41868 
libbind9-80_9.8.4.dfsg.P1-5_amd64.deb
 58a2f2125f0ddeb98e3ad6123c9c657670f3eb77 750030 
libdns88_9.8.4.dfsg.P1-5_amd64.deb
 d3925d0b1b22c8467469753d84b8df1558f2b295 182070 
libisc84_9.8.4.dfsg.P1-5_amd64.deb
 426b96bcf296b80e9d189077600c146131a88920 54768 
liblwres80_9.8.4.dfsg.P1-5_amd64.deb
 7c26e872edccc0c28f08bd4ab8c92bf477386945 35482 
libisccc80_9.8.4.dfsg.P1-5_amd64.deb
 182f46f69d4948dc5c06a6d9ff62a55fec39689d 62338 
libisccfg82_9.8.4.dfsg.P1-5_amd64.deb
 6a1974b537e553402051b845d1ecf80ff225a641 166132 
dnsutils_9.8.4.dfsg.P1-5_amd64.deb
 1fbab829b522231f15f56fcb6fefbfe14ba96389 252008 
lwresd_9.8.4.dfsg.P1-5_amd64.deb
 c1d38d5b871f06128452d93f00093f57c9a321fb 363644 
bind9-doc_9.8.4.dfsg.P1-5_all.deb
 8fc9a00caa51763ee06d5258b20b3da4db51c007 20174 host_9.8.4.dfsg.P1-5_all.deb
 cdfbe298ec68551b12526228026514b2adfc1aa1 364380 bind9_9.8.4.dfsg.P1-5_i386.deb
 ab4c9af63026fa2c83826ae241aae62105b48660 120854 
bind9utils_9.8.4.dfsg.P1-5_i386.deb
 4ca51b1b7c77c98563ffc7c36f8c04e8be22de08 71620 
bind9-host_9.8.4.dfsg.P1-5_i386.deb
 79f00aae1ab04ad52f71b894f7cc4861963e2b7f 1568268 
libbind-dev_9.8.4.dfsg.P1-5_i386.deb
 b1dda15ecd76fd18be34cb4e1be2d8e7b32778d5 42154 
libbind9-80_9.8.4.dfsg.P1-5_i386.deb
 d451c971b8f56f097ef4ab5db1c5632df800faf5 749556 
libdns88_9.8.4.dfsg.P1-5_i386.deb
 b5a5a575abfab91de18681c858bac7e052d2b813 181534 
libisc84_9.8.4.dfsg.P1-5_i386.deb
 7f02f2d50a792870b2d2228672f76719fc6ac2eb 55016 
liblwres80_9.8.4.dfsg.P1-5_i386.deb
 181168d440bec870cd18d9c2308d716ca34eb6ba 35784 
libisccc80_9.8.4.dfsg.P1-5_i386.deb
 901aeb24b8deb46a3ae59f2fe49c36a77c825093 59480 
libisccfg82_9.8.4.dfsg.P1-5_i386.deb
 56958aae682f5d578c6c6ef47796a58376125944 162398 
dnsutils_9.8.4.dfsg.P1-5_i386.deb
 1c7cfec08f266f0f7d653680319769e93183ed82 250252 lwresd_9.8.4.dfsg.P1-5_i386.deb
 01c0e61a097e49228212b06db73fb1943e8e8b99 1942 bind9_9.8.4.dfsg.P1-5.dsc
 3ab83667ab3ce2df6bdf558cc1e5a361fe5b539b 7258441 
bind9_9.8.4.dfsg.P1.orig.tar.gz
 387af642bc9cfcc4078a03c0060de3a84b00cff9 661228 bind9_9.8.4.dfsg.P1-5.diff.gz
Checksums-Sha256: 
 891f09c55592f7d2e91d71fdc23a7e5632e350e909193b201d9b188eb8367b8a 369710 
bind9_9.8.4.dfsg.P1-5_amd64.deb
 f82fff911ec9d21476ec2750e8ea2144e63da3c7b55fedeb995fc1ba9f6a79c4 124288 
bind9utils_9.8.4.dfsg.P1-5_amd64.deb
 17aa2b7eae23484799542cf5996b7330216ba654df00c9d5597b4524d9bca2df 73034 
bind9-host_9.8.4.dfsg.P1-5_amd64.deb
 a4b2e8dbd6c4bd40ca353d2a058a7aa7fb8b1a62183cead59c128c01271935d6 1578498 
libbind-dev_9.8.4.dfsg.P1-5_amd64.deb
 f234248768c912b48db3bb2190d5f5d9397b3a3c4093f908182782d2f1627d12 41868 
libbind9-80_9.8.4.dfsg.P1-5_amd64.deb
 13e532a1bf4669d4d7d48514097165905f1694778a37bd1d2a254ea62830a325 750030 
libdns88_9.8.4.dfsg.P1-5_amd64.deb
 65445a7728bd6408c0076ea5d6e76ada10e80898cbc77c9347fa3b14deb194b7 182070 
libisc84_9.8.4.dfsg.P1-5_amd64.deb
 85d19def102fbbe8cf116fa8fe6dfb8a31acbe382418e78e3c4d5db41b1e4bcb 54768 
liblwres80_9.8.4.dfsg.P1-5_amd64.deb
 3e30f2ded964889abbf057096099ea074178d88e7048a9848e461da0c9aadb86 35482 
libisccc80_9.8.4.dfsg.P1-5_amd64.deb
 9250793f181b4f7013cf361d7aa94a9c1709febfee9eb47f4939e8dc801228c7 62338 

Accepted broadcom-sta 5.100.82.112-9 (source all)

2013-01-30 Thread Cyril Lacoux
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 24 Jan 2013 09:36:20 +0400
Source: broadcom-sta
Binary: broadcom-sta-common broadcom-sta-dkms broadcom-sta-source
Architecture: source all
Version: 5.100.82.112-9
Distribution: unstable
Urgency: low
Maintainer: Cyril Lacoux clac...@easter-eggs.com
Changed-By: Cyril Lacoux clac...@easter-eggs.com
Description: 
 broadcom-sta-common - Common files for the Broadcom STA Wireless driver
 broadcom-sta-dkms - dkms source for the Broadcom STA Wireless driver
 broadcom-sta-source - Source for the Broadcom STA Wireless driver
Closes: 697496 698216
Changes: 
 broadcom-sta (5.100.82.112-9) unstable; urgency=low
 .
   * Added bcma (which brcmsmac depends on) to blacklist (Closes: #697496).
   * Added 10-3.6.0.patch to fix kernel oops with 3.6 serie (Closes: #698216).
Checksums-Sha1: 
 fb46037db96ea1e24b4d97a533aa4b853529ad06 1982 broadcom-sta_5.100.82.112-9.dsc
 75a15ec52c66b5c5326f314ccf6517be7fd4cb63 17555 
broadcom-sta_5.100.82.112-9.debian.tar.gz
 c8a910a2b4e0a595bf2b433d61b3b7cba109545a 12402 
broadcom-sta-common_5.100.82.112-9_all.deb
 3514a6593d7a253e70b4515dfe43f9e15b00f190 2208094 
broadcom-sta-dkms_5.100.82.112-9_all.deb
 a5d15a965351811d4e2e3906f8e839dcd850112c 1986224 
broadcom-sta-source_5.100.82.112-9_all.deb
Checksums-Sha256: 
 4b53d7f71df8a69e6c9a1a265ce2904b873c163cc2d3dbb238dfff676de13f09 1982 
broadcom-sta_5.100.82.112-9.dsc
 c863be406f5a4d464181d04caef5476257b5b5c25f6a97f166058ef270587fee 17555 
broadcom-sta_5.100.82.112-9.debian.tar.gz
 08fc353b9872bee0e6dab47b7742b215291d83ae6fb3fd2c3946f96c2269f64e 12402 
broadcom-sta-common_5.100.82.112-9_all.deb
 b41d6df63e897baab758665b2d0b21ec2dc6773d1f80e8d83d167967daac498b 2208094 
broadcom-sta-dkms_5.100.82.112-9_all.deb
 40ac4c8fc96bf061c771153ed29c5f47dfaaffc1f4c9850b55d17a06d6e6 1986224 
broadcom-sta-source_5.100.82.112-9_all.deb
Files: 
 fdd035796b6fe30d1b9c5560b2ffd936 1982 non-free/admin optional 
broadcom-sta_5.100.82.112-9.dsc
 2782a5eb6d0703a65cdc5368a5c57306 17555 non-free/admin optional 
broadcom-sta_5.100.82.112-9.debian.tar.gz
 37e212d2938cb94a40760bf4b906c012 12402 non-free/admin optional 
broadcom-sta-common_5.100.82.112-9_all.deb
 48a9a51cbc6a1f728f1dac7bad3b0b0d 2208094 non-free/admin optional 
broadcom-sta-dkms_5.100.82.112-9_all.deb
 5f2b645226e53b9f18adb9f0d74de9d9 1986224 non-free/admin optional 
broadcom-sta-source_5.100.82.112-9_all.deb

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

iQIcBAEBAgAGBQJRCZGnAAoJEGEbqVCLeKXC7oYP/0pjANskM9/PA/1q2fDuwr/z
2Djdd1g1fbyF1yPHwq1755y1542WTJGYVqSzlTTpjXOSIfx/W6X1qh4sAAzBnIgT
TGo0Uc29infVfIVJz0HMKNo89+3u7VEuhWCUuzteShTOAEHNDT5SCvKKKm5onvpX
T7U0NnHKSS6op81iywBl5FfVwB3OsT7aNWzh2mPEzoGKnaUuHGndO0k47BU4UYMH
f064C0zvPJGNmpdebZpmtxfyr43YElkFcj+mhJFQ/40G0y40UJIS71V/8+3C1QyG
h29joRBcoyZF42p45DQGhspG9/s/nZat90ye7L1mhxL1KdZCwiXqU82o7ndPtUZl
1TwDNwAy22fPxLiig0qyKr4fT+/kLtkduRCpoCCLW+ntfN/UvS8Yri74c9cbbmmu
fFJ+j4FzbaCFbxXq6ziaZNH2OGQFqZJq/R+/KjFC16TX5lGqdUuZDAWS+eJ6IxNy
iiBUn6OEq/gOz92trl7zIGqWvfIuyFM2Np7a1hTN1Pgcy+JxiHno1Bqfycg7RjQK
5X0tVTMA4ef4UYMj6MAsOIox7mT0GheZaf5oLhJGiDoN/e2Zjy76aPDIhkKs1/yS
LJ2Kz9DFvNecGOE3xI97UCjCA/9nkDf42+Eyr3eAj+Iam0FJp6SKQvU1yM0Zmo6R
O7HN0diDCGYLJaVjiRHN
=sirL
-END PGP SIGNATURE-


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



Accepted licq 1.7.1-1 (source all amd64)

2013-01-30 Thread Erik Johansson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 21:36:43 +0100
Source: licq
Binary: licq licq-dev licq-plugin-autoreply licq-plugin-console 
licq-plugin-forwarder licq-plugin-jabber licq-plugin-kde licq-plugin-kde4 
licq-plugin-msn licq-plugin-osd licq-plugin-qt licq-plugin-qt4 
licq-plugin-qt4-common licq-plugin-rms
Architecture: source all amd64
Version: 1.7.1-1
Distribution: unstable
Urgency: low
Maintainer: Erik Johansson deb...@ejohansson.se
Changed-By: Erik Johansson deb...@ejohansson.se
Description: 
 licq   - multi-protocol instant messaging client (base files)
 licq-dev   - Licq development and header files
 licq-plugin-autoreply - autoreply plug-in for Licq
 licq-plugin-console - console user interface plug-in for Licq
 licq-plugin-forwarder - forwarder plug-in for Licq
 licq-plugin-jabber - Jabber plug-in for Licq
 licq-plugin-kde - dummy package for transition to licq-plugin-kde4
 licq-plugin-kde4 - graphical user interface plug-in for Licq using KDE4
 licq-plugin-msn - MSN plug-in for Licq
 licq-plugin-osd - on-screen display plug-in for Licq
 licq-plugin-qt - dummy package for transition to licq-plugin-qt4
 licq-plugin-qt4 - graphical user interface plug-in for Licq using Qt4
 licq-plugin-qt4-common - common data files for the Qt4 and KDE4 Licq plugins
 licq-plugin-rms - remote management server plug-in for telnet Licq access
Changes: 
 licq (1.7.1-1) unstable; urgency=low
 .
   * New upstream version 1.7.1
   * Bump standards version to 3.9.4 with no changes
Checksums-Sha1: 
 68cd4300f48bb1a0ba0eba786ebdf77759c4ce7f 2131 licq_1.7.1-1.dsc
 e51b502194dfc133e233fd10a1fa5a32ddfd20f9 2399713 licq_1.7.1.orig.tar.bz2
 b62f3bbafa1166cbce55a30ed50f7cc41d42df65 27105 licq_1.7.1-1.debian.tar.gz
 790a08a7d42d3bfb5db293bd167ee86984439c45 92370 licq-dev_1.7.1-1_all.deb
 aa248de4e29e95c37d4741a63ab17257588cdaaf 33660 licq-plugin-kde_1.7.1-1_all.deb
 94f5a95a2379444501f1535365e296a3bd2d6bee 33654 licq-plugin-qt_1.7.1-1_all.deb
 bf130465efa1bdec5e0335622c1fd252ffe0634b 1129414 
licq-plugin-qt4-common_1.7.1-1_all.deb
 c6e5d948e2db8789cefe5f7b61dfc12121aa0f16 1028874 licq_1.7.1-1_amd64.deb
 21abff8956f022eb5e9dff04d5f4d86dd78714b7 45964 
licq-plugin-autoreply_1.7.1-1_amd64.deb
 8c091b3fba54cbcfb63eee1c98372bf1c7664dc7 100798 
licq-plugin-console_1.7.1-1_amd64.deb
 ebb17f11b6c8c8acdbfbc4adbd75ac9521550a90 53402 
licq-plugin-forwarder_1.7.1-1_amd64.deb
 d375b76c95930a11c06b5c5699e721260b67f296 69778 
licq-plugin-jabber_1.7.1-1_amd64.deb
 2d980f53f96ad2099144f09502fb7baf6c2c8971 773188 
licq-plugin-kde4_1.7.1-1_amd64.deb
 878d84905b0e93f96e60e526dbe388b82b5d36c1 93284 
licq-plugin-msn_1.7.1-1_amd64.deb
 e33e39d9aad27d56751df6d13116e57fb7c5f684 63026 
licq-plugin-osd_1.7.1-1_amd64.deb
 f7565a63fcbd2638044058c8ffccf074019167e2 804202 
licq-plugin-qt4_1.7.1-1_amd64.deb
 cc45751e4a828613641df9df40afae5f48a67135 63316 
licq-plugin-rms_1.7.1-1_amd64.deb
Checksums-Sha256: 
 a59d114f7a194e20badda7d22472235988046880d1cc343581a6d8c038ce57e4 2131 
licq_1.7.1-1.dsc
 f40537cc6286f6fbfd1e4dd6e98198e58721723003a5a1d1c6ccbf99bdc00da4 2399713 
licq_1.7.1.orig.tar.bz2
 4bd6ab6eb90342760d4bf3fbaf8271908f45b626d71a12bb8b50f19e9b452eb2 27105 
licq_1.7.1-1.debian.tar.gz
 e64323030b38e2a70f3e20852376b53bc17cdce3c45d2e0b74ecb8c1874100a0 92370 
licq-dev_1.7.1-1_all.deb
 7ba8527f9d2f7a3a138b86f5edc9d010e6f5b157f65ba9aa44fb6fa5ee0c6257 33660 
licq-plugin-kde_1.7.1-1_all.deb
 3724549c8b7f8836ba5744f0cdef31d51cc491f54195f89a00d79f25ad71cd94 33654 
licq-plugin-qt_1.7.1-1_all.deb
 885ec74906ebc742117f4cf81b1d969b3b08cd27ab89c4ffca2b2ed8afda8e96 1129414 
licq-plugin-qt4-common_1.7.1-1_all.deb
 8969b6ff550ed9188b717ca17f5f1aec8dc365d519dc5f027875bdf34cb50bf2 1028874 
licq_1.7.1-1_amd64.deb
 13a4af1db333cbc367344b266cdb8437277483a35d725cba57eabf7104a35d05 45964 
licq-plugin-autoreply_1.7.1-1_amd64.deb
 b8a5798b006d155e994b030eb3a1699fb1da1dc5659e8530c29b47752452527f 100798 
licq-plugin-console_1.7.1-1_amd64.deb
 4bed79ffa33354bdf75ee2501a71037d0dd1ce5c1c67ee2878470e1d4e6bb82c 53402 
licq-plugin-forwarder_1.7.1-1_amd64.deb
 5ecdef7770039d0c601ffb7f266c92f770b1915740ceeb36ae258601e122cda8 69778 
licq-plugin-jabber_1.7.1-1_amd64.deb
 f86165ecdbea5c685912bd6153f578faa843372e680aa61311cf28c31caef3cb 773188 
licq-plugin-kde4_1.7.1-1_amd64.deb
 e4cb91b7fbb894d9df7e7c0f7d54e4c102e31b4e9dec346827821cf54e834cd6 93284 
licq-plugin-msn_1.7.1-1_amd64.deb
 092263e42b246262786bfb6bb1c31d1e01f027fbacc5e25b2e5b0712dbcda802 63026 
licq-plugin-osd_1.7.1-1_amd64.deb
 8ce547a3e1281b2bef508d07a49ac644b144b2e9b531edecc512da30232bfd98 804202 
licq-plugin-qt4_1.7.1-1_amd64.deb
 f128e10c57b5b564dd5c9467083bf4451a1a868b6e944fe8b1e7620944f01660 63316 
licq-plugin-rms_1.7.1-1_amd64.deb
Files: 
 ad4b673ff9c2197ca00617963e82a055 2131 net optional licq_1.7.1-1.dsc
 701e57efedc2b7ece64c3d2d2e9f9e16 2399713 net optional licq_1.7.1.orig.tar.bz2
 0eeb9d6ef3d810e5d5db1d62a8cb8f92 27105 net optional licq_1.7.1-1.debian.tar.gz
 

Accepted stevedore 0.8-2 (source all)

2013-01-30 Thread Julien Danjou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 22:37:30 +0100
Source: stevedore
Binary: python-stevedore
Architecture: source all
Version: 0.8-2
Distribution: unstable
Urgency: low
Maintainer: Julien Danjou a...@debian.org
Changed-By: Julien Danjou a...@debian.org
Description: 
 python-stevedore - manage dynamic plugins for Python applications
Closes: 699195
Changes: 
 stevedore (0.8-2) unstable; urgency=low
 .
   * Add missing build-dependencies (Closes: #699195)
Checksums-Sha1: 
 9c5607e66fbb93154826ec9915e724723821b8f2 1941 stevedore_0.8-2.dsc
 4004c7a403f69457f4726f9d2e157f76b93a6729 1922 stevedore_0.8-2.debian.tar.gz
 f4c444f4fb7020ced5d9c1c5eb3c6ebfb9e491f0 10034 python-stevedore_0.8-2_all.deb
Checksums-Sha256: 
 b5eb247313bf624713c82da35bc39e2b928ef26ad1a9c773313f93e64b442941 1941 
stevedore_0.8-2.dsc
 9488cb734b05c99340296f0fd9b0d2bcb2dfd4912551b6d52fa98a906c803023 1922 
stevedore_0.8-2.debian.tar.gz
 7ef177ce1e9797a313570667baebfc736237412bb36101490671575d270caf79 10034 
python-stevedore_0.8-2_all.deb
Files: 
 bd1ae759bfc8c421b8a188f0501cdb39 1941 python extra stevedore_0.8-2.dsc
 e2debbb65f54f88b12e60fa81bf0ee2e 1922 python extra 
stevedore_0.8-2.debian.tar.gz
 112b9b202f5f16572ab14163dcd952f6 10034 python extra 
python-stevedore_0.8-2_all.deb

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

iQIcBAEBAgAGBQJRCZRAAAoJEGEbqVCLeKXCVkwP/Av2/s+POMv1fpq3A3wRkbZq
5+kn0+aAhN98BigWcQoJATd82gV/8sim9kuqxF53qJfBsZRD1LVpRJNDIRF2k66B
hEgeQkiuVvzmS4seOoTaHX8B0xR8itMdU3gG+pYq1VN2eGnwfH74PJ12UayHwsd6
7F3PEg86G0BRJ6b9f6nZK/ikggU3t1sHxvFUGa6C/ddIQ7WCdY5i2KZDirlg6w34
Ni00UOZ7g/QYlm2siRtwFaBBz9yegAsbn26eYURpRi3UwFiWzdXoZnOyyWeIcR1b
FbDvFqmMk1xyh9TsJy57JTMXtNhH3T5p7NNxGM8Lt0I+yZtAGQn0XtbG9Y2QgD5v
lp0ZkP4xt/MTIRDFxAQg5yYNTPW2NK5d9Ke3gTFxyECYWbZLxkml0ZFdKXI7s6Tq
Z64v33htOAzfc4NTJ252fi7DCRB4vYoJCg3c/ZnUieomHmYatW9SKrAS7JrVtyRm
fxVPRhtRgRZbiGixCfzJ6F1RySTj3pq9bvxrQ28gzXXXNr3twctVt3XnFPeJ8FWm
gyYkzYViPtX7VGNa0CsRse4AjniW5tQv20ASpj1IHTICipgDYYnwVXEUIOwS5SrE
F2NRNGlk63/w8YyszFKnZiqJgOulLRBe0AXDSp57zsWwK+cl5aP1jZgx4Y2AQeP4
3fiePqFZLSVqVEMNP7Kj
=ytFo
-END PGP SIGNATURE-


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



Accepted collectd 5.2.1-1 (source amd64 all)

2013-01-30 Thread Sebastian Harl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 21:35:30 +0100
Source: collectd
Binary: collectd-core collectd collectd-utils collectd-dbg collectd-dev 
libcollectdclient-dev libcollectdclient1
Architecture: source amd64 all
Version: 5.2.1-1
Distribution: experimental
Urgency: low
Maintainer: Sebastian Harl tok...@debian.org
Changed-By: Sebastian Harl tok...@debian.org
Description: 
 collectd   - statistics collection and monitoring daemon
 collectd-core - statistics collection and monitoring daemon (core system)
 collectd-dbg - statistics collection and monitoring daemon (debugging symbols)
 collectd-dev - statistics collection and monitoring daemon (development files)
 collectd-utils - statistics collection and monitoring daemon (utilities)
 libcollectdclient-dev - client library for collectd's control interface 
(development file
 libcollectdclient1 - client library for collectd's control interface
Changes: 
 collectd (5.2.1-1) experimental; urgency=low
 .
   * New upstream release.
   * debian/patches:
 - Removed postgresql_writer_memleak.dpatch -- applied upstream.
   * debian/collectd-utils.install:
 - Install collectd-tg manpage.
   * debian/control:
 - Updated standards-version to 3.9.4 -- no changes.
Checksums-Sha1: 
 a1c1eeb6ccb2b3815e45ff19f099653cbdd76509 2693 collectd_5.2.1-1.dsc
 2c51c21d339c221bd9f94b1ee2b44b1e388d6b39 1769842 collectd_5.2.1.orig.tar.gz
 d604bcd7110931485f2b667d7acd0f95a9670e6e 72638 collectd_5.2.1-1.diff.gz
 ca3798fdb3261066d4126c4387ba9b8bbae29bfd 960212 collectd-core_5.2.1-1_amd64.deb
 47e9bc0152eb5b92a79bde64a98a2de1129d3558 81114 collectd_5.2.1-1_amd64.deb
 ae2613e0e21edb2e804a8da741323d2c894f9c65 98768 collectd-utils_5.2.1-1_amd64.deb
 72b9922025533d17e0c3261d4619ff15e381fa6b 1440440 collectd-dbg_5.2.1-1_amd64.deb
 624677627c13aad2a2056b1f9d78bd96dd7b62e1 76056 
libcollectdclient-dev_5.2.1-1_amd64.deb
 f2211a12b1844fc2e418e6fc1bec5e0b61742dd7 87406 
libcollectdclient1_5.2.1-1_amd64.deb
 a09c09f69662cc1bb3dd21e3e75340c86e8f532a 119856 collectd-dev_5.2.1-1_all.deb
Checksums-Sha256: 
 e9578c477836aff02624c36c463d8010ef5358984c22ddaca21caa846db0bf58 2693 
collectd_5.2.1-1.dsc
 55fa3659218cafc57175fe7b9a67fff71519280ad02f8830e78e6fb642a3dbc9 1769842 
collectd_5.2.1.orig.tar.gz
 57619e83b7a52d163d2dfb1b3ad55fb0dd96df3fd09306870931d9d50d348e5f 72638 
collectd_5.2.1-1.diff.gz
 bbcbc8843df32d0fc5ce966232c9fbe69df1fba746bee14bd16ca4afa4a06b55 960212 
collectd-core_5.2.1-1_amd64.deb
 abdef3649183c735d67489ef5cc60f620a0403bb5ce2a090c7aef0bc073011d6 81114 
collectd_5.2.1-1_amd64.deb
 f7864bb4a6a03dd2b557827e38e5fbf16a8fec473492ec02631355ffa4d9824e 98768 
collectd-utils_5.2.1-1_amd64.deb
 58bfda2748925d4b4a5bfa25b066aa6d3139b86aa6a9a0cd9b15b5b5a8d61b06 1440440 
collectd-dbg_5.2.1-1_amd64.deb
 2705c45e4cd3dbf1f5e4fdd6d2c1b6b7e035b67e8d9870e83ec6b5b573596f15 76056 
libcollectdclient-dev_5.2.1-1_amd64.deb
 d0a17f56d140179a60f1c183b85a54edf0e9641a37fff28bb9d43cd9c0aed97e 87406 
libcollectdclient1_5.2.1-1_amd64.deb
 05ff9d935531785499f917b762fcaf7abc085c47a968eaaf49281d1b866abb16 119856 
collectd-dev_5.2.1-1_all.deb
Files: 
 57c697bdba70301891fbaed5a25c18c3 2693 utils optional collectd_5.2.1-1.dsc
 8c70bf743be394d2178a35eaf970567e 1769842 utils optional 
collectd_5.2.1.orig.tar.gz
 484fce037e3d51c8f685f8a8e8f6bdbd 72638 utils optional collectd_5.2.1-1.diff.gz
 e340f55d0c8c39a014cb0d6ffb31971c 960212 utils optional 
collectd-core_5.2.1-1_amd64.deb
 ffdaa51b8a7ffac686797b3b201cfc78 81114 utils optional 
collectd_5.2.1-1_amd64.deb
 c2586b6bb153be57d39a0c4b8047a169 98768 utils optional 
collectd-utils_5.2.1-1_amd64.deb
 6111c913bb947e1b439c267416b0d0b3 1440440 debug extra 
collectd-dbg_5.2.1-1_amd64.deb
 8dfe87d75c9eaeaf252fed0c67097a03 76056 libdevel optional 
libcollectdclient-dev_5.2.1-1_amd64.deb
 a60ec2e40dbf4db7dafc145e4bb737a9 87406 libs optional 
libcollectdclient1_5.2.1-1_amd64.deb
 02a9f19226bca8799954c5eaab28b6c0 119856 utils optional 
collectd-dev_5.2.1-1_all.deb

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

iEYEARECAAYFAlEJmmMACgkQEFEKc4UBx/x3KgCglV83E2Wit9/AbhINtCsKyW9t
9BAAoIv9Ww1Ni5OBTwrFNN0UUtJ2blRn
=LixB
-END PGP SIGNATURE-


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



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

2013-01-30 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 30 Jan 2013 23:19:05 +0100
Source: libregexp-grammars-perl
Binary: libregexp-grammars-perl
Architecture: source all
Version: 1.026-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libregexp-grammars-perl - Perl module to add grammatical parsing features to 
Perl 5.10 rege
Changes: 
 libregexp-grammars-perl (1.026-1) unstable; urgency=low
 .
   * Imported Upstream version 1.026
Checksums-Sha1: 
 9075e489ace965357fe50e90d892129ecdaaa6d5 2152 
libregexp-grammars-perl_1.026-1.dsc
 b009765bb981a3b55e490fee00d62b457fec2261 252176 
libregexp-grammars-perl_1.026.orig.tar.gz
 338ef7332046f1ae8661a85ff3997f0435c09d0f 2791 
libregexp-grammars-perl_1.026-1.debian.tar.gz
 1f66b5aec7f6dbaa548a401a2667f101db996154 288200 
libregexp-grammars-perl_1.026-1_all.deb
Checksums-Sha256: 
 c4e36182ce3bc35f9406c93bdd072c7e6d446e7037ccc7f36412a281b807ee69 2152 
libregexp-grammars-perl_1.026-1.dsc
 14cd2f836016a430e8ed6b799aff245ce86f16136905b8e10667b66c580bb0a0 252176 
libregexp-grammars-perl_1.026.orig.tar.gz
 1b5cebc9b2fd44881362883614548fd2dfdd4affabee925be45e246a49f6071f 2791 
libregexp-grammars-perl_1.026-1.debian.tar.gz
 c20c2c1c817e22c1618b03ea4c163c28ce047549acc710680c04e4b790eac52d 288200 
libregexp-grammars-perl_1.026-1_all.deb
Files: 
 1cd9048e69c8750f50c9496f0fb12351 2152 perl optional 
libregexp-grammars-perl_1.026-1.dsc
 6d75f337154bbbcd754e75ba7dd48bdd 252176 perl optional 
libregexp-grammars-perl_1.026.orig.tar.gz
 44945ca72b0e5dce0a05dd070b5a04f0 2791 perl optional 
libregexp-grammars-perl_1.026-1.debian.tar.gz
 cae4eefc3b106d2838d571fcec02c28b 288200 perl optional 
libregexp-grammars-perl_1.026-1_all.deb

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

iQIcBAEBCgAGBQJRCZ4WAAoJEHidbwV/2GP+57IP/2VXI+EAWbvNOPN/czDN9eHp
68hzAeABMcDt6yobff7KqDDNUIOD26vxhUDpy1E/+EwlETYtsCRi7BPkD5tOYKIv
zQZcte2/NlXipQcMGh5CR8E4nPw45kBqXDzy3+fdbnePfOcgevdfmGPxIF/j6eX4
p50ZitB+ickyLEuF2zdZXE+6dkhIVz957Atv17C3cbiVT6H2hEgh2d+elImoyuG+
BygCCFf2+egalaJme/jW+/XHuJnlGwD6xE1gsFIHnhLfD4oB6OduxysvyTkIUfgZ
xTlXejGYukiq0HXu8d7zUVExyZ8sVQ3l2cggJuK8at2B4MJmL/2+kuOGbPBK4/le
pff18qVczdDxQn7LIcIs9pIF3bgxDaWHdUTH3BZR2B7pRTw6LrLtd8AuaHTl5DIm
IUf8RIDCg4tSYFnJ5DZ5bfTsK6+jpYFJR1TqJlJFYXvpKwdgKtLuK83GrYpPph3h
7/JCFUWt7k/hz7XXIsC0Ufkz2vyZ9QdYbiqVwmylDyAdbajNsPnSLGnQg+25RIYi
dPaTeC1KoS4nWF7BaJo5r7K56SXLukswwwPwXm1U5FKjGLQMY+oeMTScO88Sgopk
gjAwH/u81+LshcJqFXu6fLynZqSpOFKkjw2ikCH2ZvZqloOHDRPiNj1I3glBuXZo
xjWYiyMnu1lAxRX/bo5f
=jdB6
-END PGP SIGNATURE-


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



Accepted simgrid 3.9~rc1-1 (source amd64)

2013-01-30 Thread Martin Quinson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 31 Jan 2013 00:24:51 +0100
Source: simgrid
Binary: simgrid
Architecture: source amd64
Version: 3.9~rc1-1
Distribution: unstable
Urgency: low
Maintainer: Lucas Nussbaum lu...@debian.org
Changed-By: Martin Quinson mquin...@debian.org
Description: 
 simgrid- Toolkit for scalable simulation of distributed applications
Changes: 
 simgrid (3.9~rc1-1) unstable; urgency=low
 .
   * New upstream release: the Grasgory release. Major changes:
 - Gras was completely removed from this version.
 - Documentation reorganization to ease browsing it.
 - New default value for the TCP_gamma parameter: 4MiB
Checksums-Sha1: 
 05bb90700086545d7b10d750ec05bbd6c2954bcb 1943 simgrid_3.9~rc1-1.dsc
 2e1f0a248b264a6dea209c8f5b2040b8b6633187 4796556 simgrid_3.9~rc1.orig.tar.gz
 b51ba13e121bb3596c901b2fc0ae13bdb7279ba6 7709 simgrid_3.9~rc1-1.debian.tar.gz
 f7bb940a269ea21a42fb7f3340e0658f8172f6c0 2503400 simgrid_3.9~rc1-1_amd64.deb
Checksums-Sha256: 
 72f7d51ec80c230f02ff499cc1d361c2f5b953caa066ab9e77435d65f76044d9 1943 
simgrid_3.9~rc1-1.dsc
 408c84270f8a626ab21a8fd82bc3c0302b657055e00dfeb295aec0508621083f 4796556 
simgrid_3.9~rc1.orig.tar.gz
 1283625bc5c8cd21b3c2b1d6d48bf81654475def9f7509cfb4fbfdeda5a8c9a0 7709 
simgrid_3.9~rc1-1.debian.tar.gz
 57ca2c04b65d01f387d615e00128332e7f9fda4ad24c8ba7291bce640f0e82ef 2503400 
simgrid_3.9~rc1-1_amd64.deb
Files: 
 621dbcb0a1473142ebe44370ac8486f1 1943 science extra simgrid_3.9~rc1-1.dsc
 531bf9a83a06435ab1c904f16f2b924b 4796556 science extra 
simgrid_3.9~rc1.orig.tar.gz
 ca99e23ace785fe7ec48c6cc9063b2ff 7709 science extra 
simgrid_3.9~rc1-1.debian.tar.gz
 62812ca20f24fd1559a3d8f9f6d72842 2503400 science extra 
simgrid_3.9~rc1-1_amd64.deb

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

iQIcBAEBCAAGBQJRCbMOAAoJEJi9lyRPc76nozYQAIFxneNOqt/PQUQ8VNQR0c+m
d2JtgsqdSj0PuZkGsiQOrqggB2T66sz58Db15E+FvZO9i7gqnqCDrF7EHa+MqCJr
BsJ//73twl9LFzgUugucQXwEEc8Pz4A/mmElI3GkdaHs73eA9ny031UEdyLRuuCh
c/FtcpPzJmglUpM/FNsdOANHFlLT3trwlMela0+J8wHVqtPF76KIF1y6+yyc/dQ8
uOs0MsIzI7M7IhZVg2pnU8eBPKGJDSwqRgsqmH058h5qHLsShL5Zly+4Da7qZ004
gHtVh2d6t1vRmiqWVFOdv1MUPvg7E02zQcLcrYKeg8mZZT6tOAfbR/Ewtg8MoK9W
H5CQJtNhDdFgs+YI5YhxLVpJNyNDWXjlnHGoeNpxqyaszScVrtHYQK6Q5abzeYwS
sIuPRxduyrFklWNqnGroZxRc5YddVNZEgdg47U+KZx0id0vRh55OKeQ2VQv4O1ci
gDts+hiQYt9/44Z2t04Vwz37LHNVyMtWHNSVAqtkHB2QsGlnSTW9/tXu6q2jDO99
Q5qxg0wjkvIvIGT3rgn5dc4XgfXJJBJ8jPNKD4uofGS2Hn3T0+XiXEhpd8oGosiG
NNINrvLQR8MmJGnNZzXflLZfiglqiaDQ6kzAzzQ+No8AXsvfBELUAXQ2k04uNTdK
qoA90CiLisv/f+WiD1z/
=Yt6t
-END PGP SIGNATURE-


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



Accepted bristol 0.60.11-1 (source amd64 all)

2013-01-30 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 31 Jan 2013 01:02:00 +
Source: bristol
Binary: bristol bristol-data
Architecture: source amd64 all
Version: 0.60.11-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 bristol- vintage synthesizer emulator
 bristol-data - vintage synthesizer emulator (data files)
Changes: 
 bristol (0.60.11-1) experimental; urgency=low
 .
   * New upstream release.
   * Bump debhelper requirements.
   * Refresh patches.
   * Bump Standards.
Checksums-Sha1: 
 70750d26c240cb5e4c6e0a4830e2eae6dd71409a 2105 bristol_0.60.11-1.dsc
 7987182cf2d23497fe1e0e8ee56374c22d52bbb2 4218697 bristol_0.60.11.orig.tar.gz
 8683dacc58eafe2ce571dc88562774fd98423f09 7818 bristol_0.60.11-1.debian.tar.gz
 d69b3319e412cc1c6f1b18f2c315747a285efeaf 831900 bristol_0.60.11-1_amd64.deb
 2169d540c358bfb8e99665b02df128236f9a4c88 2700692 bristol-data_0.60.11-1_all.deb
Checksums-Sha256: 
 322679fb83e52a9dadc40f7d4db98405522e313c60872183f5e4455013c9bb0e 2105 
bristol_0.60.11-1.dsc
 7d1f0bbd0d7d303fc77c6b9549b61708d7a83b4dc007818011b1f55d1fa922ba 4218697 
bristol_0.60.11.orig.tar.gz
 2e1f9bcaae660d2a56e496281a93302cd65f6b29db39512d948c5a2ac7ade248 7818 
bristol_0.60.11-1.debian.tar.gz
 fee62a36480593b3250061f77346008d4edc6783903f5594f8e76e9c64dfc308 831900 
bristol_0.60.11-1_amd64.deb
 cb9fc56333de5dc157b03734f5e9421efe7592a420914a709dc57d405a0ac882 2700692 
bristol-data_0.60.11-1_all.deb
Files: 
 f04737c07d76db3570ccfc8ba859c622 2105 sound optional bristol_0.60.11-1.dsc
 9ea4dacdac0dba3048156e2f6a5ee4d6 4218697 sound optional 
bristol_0.60.11.orig.tar.gz
 5d6328cff3c1e13fee5f15ec868b66f7 7818 sound optional 
bristol_0.60.11-1.debian.tar.gz
 e533ba14666344752c78e0b9357f20db 831900 sound optional 
bristol_0.60.11-1_amd64.deb
 94cb29beefddb9c2510a44390d12ca0c 2700692 sound optional 
bristol-data_0.60.11-1_all.deb

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

iQIcBAEBAgAGBQJRCcfwAAoJEOikiuUxHXZavwkP/RTMXlgbynH1P6rjiqUCUuk9
dPlJoCaoJKaCXBZ9051fIjl2V1JO/SLvtCymyK1fEio79KAHEvbrDsR4p05foXLo
srAw1qWdpSumoweLdVcU5tz9aPBXEgKZcCcQgdZTqvSS5+SnFxDm3Yh/FjCDfhOd
Lnp2EY/CFJsdoLlGY7eK8OxhE6jzQeuYip2qFOj3lhpCc3Y+p354s+tQXkxALnHl
8GqgWHZO+v36sesXUbkYe34WHl/h4B/zaJSPWJ7I3gh3JfBPcPrufaOyfWmrvXOt
Otq/YLCX9IYih6LFx3gWy42DzqDOOK8DajVlqsYSbbQ/1QhJxby8XjN7CpX2jVPy
loACthYrKmsryHVRyHp7z8CqwDB/ZfZo4jSKA8T84HO1AuArROdinl3XShMJAsF7
cp4d6mZ7h3MLn2JNnqyXeLDOS/SqDR5druWS7QvcL0jMZKSPYBYn9rpRCiA2FTQB
ndVeyU8fYh4LOtAZEY3UJPQqHcTJPpdhNXvQKpSgSoPke+S4Ooa+7THnoZ9lhFZR
eX2JAuBvhd6MRGNWH1b1gSwKBx+rzF1TqEiYU6BYgNJJu+aYVa+KmL4NPvWrIgv2
Hy6Cwa4DqImajqUN7CMFEZVQGN9YjhS0EPAI6H4whrB/j76AdumZx8Fz8WOm9v2m
EfXRamwuFwHToFw5y/GD
=9HDe
-END PGP SIGNATURE-


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



Accepted m-tx 0.60d.ctan20130123-1 (source amd64)

2013-01-30 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 23 Jan 2013 13:35:44 +0900
Source: m-tx
Binary: m-tx
Architecture: source amd64
Version: 0.60d.ctan20130123-1
Distribution: experimental
Urgency: low
Maintainer: Debian TeX Maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
Description: 
 m-tx   - Simple music-from-text language for use with PMX/MusiXTeX
Changes: 
 m-tx (0.60d.ctan20130123-1) experimental; urgency=low
 .
   * New upstream version based on CTAN upload
   * changed maintainer to the Debian TeX Maintainer mailing list with
 agreement of the current maintainer Roland, and put Roland and
 myself in Uploaders field
   * adapt debian/rules file to new layout, add get-orig-source script
   * use dh_installtex instead of handwritten postinst
Checksums-Sha1: 
 d29c09c9b43385f809fea05a0dce99edd61c6648 1535 m-tx_0.60d.ctan20130123-1.dsc
 a0bdd17ad54bf62b92d3571e664b8331a327dfd5 564292 
m-tx_0.60d.ctan20130123.orig.tar.xz
 fe0072b5248b6d12ec67215037d7d8d492e8a1d5 7651 
m-tx_0.60d.ctan20130123-1.debian.tar.gz
 705ba245d2026eee2167f75999fc6f623563ed44 548578 
m-tx_0.60d.ctan20130123-1_amd64.deb
Checksums-Sha256: 
 2f8e001aab8b6b5bd5b741bc75abc20c592792a0f57685861ba9075531a0b57f 1535 
m-tx_0.60d.ctan20130123-1.dsc
 4ea9ac57a06a55a3ea05ef094ed4a016f78c1b814a63f74ce531b4e3715cba30 564292 
m-tx_0.60d.ctan20130123.orig.tar.xz
 f0c7c76bd059ad6d5de7b8b0082c96d49868e2fdcfb37d1ab72066565f3900f7 7651 
m-tx_0.60d.ctan20130123-1.debian.tar.gz
 f751ca497d7af10073215b07f70750719bc002541b71b5274160de204cd4ca21 548578 
m-tx_0.60d.ctan20130123-1_amd64.deb
Files: 
 e6412584bc81d09985d34298d817c6ea 1535 tex optional 
m-tx_0.60d.ctan20130123-1.dsc
 09efe8b440856d2a3486e141d0835cc6 564292 tex optional 
m-tx_0.60d.ctan20130123.orig.tar.xz
 5fa03956921916d0a2d1d8a52319c4d6 7651 tex optional 
m-tx_0.60d.ctan20130123-1.debian.tar.gz
 4520f0da75f81b4480dbba614ceb6170 548578 tex optional 
m-tx_0.60d.ctan20130123-1_amd64.deb

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

iD8DBQFRAGE90r9KownFsJQRAjVVAJ93JCmuT3oMMENMhYnm8tbDllHJqACfT97C
XJkSFNwJS2DUpJdAVarf51k=
=VnZx
-END PGP SIGNATURE-


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



Accepted musixtex 1:0.115.ctan20130123-1 (source amd64)

2013-01-30 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 23 Jan 2013 14:45:40 +0900
Source: musixtex
Binary: musixtex
Architecture: source amd64
Version: 1:0.115.ctan20130123-1
Distribution: experimental
Urgency: low
Maintainer: Debian TeX Maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
Description: 
 musixtex   - Typeset music scores with TeX
Changes: 
 musixtex (1:0.115.ctan20130123-1) experimental; urgency=low
 .
   * New upstream version: current musixtex(-fonts) packages from CTAN
   * adapt debian/rules file
   * replace debian musixtex(.pl) script with shipped musixtex.lua script
 (add dependency on luatex)
   * do not build the doc as it is shipped already, remove all build-deps
 on TeX
   * remove outdated postinst and postrm
   * fix format definition to use pdftex (which is etex)
   * changed maintainer to the Debian TeX Maintainer mailing list with
 agreement of the current maintainer Roland, and put Roland and
 myself in Uploaders field
   * adjust copyright, add LPPL in the copyright file
   * add a get-orig-source rules target and script
   * recommend ghostscript for ps2pdf (used in the musixtex script)
Checksums-Sha1: 
 013ef1f6f1a10bdba8e8ffaa20e36aab0a15586e 1371 musixtex_0.115.ctan20130123-1.dsc
 97b22ae880aca3ee745dad1a4566ab5fb9f38f0e 6659436 
musixtex_0.115.ctan20130123.orig.tar.xz
 1f6322a4c3a52e381e99b418b93bd61978d78fa0 21206 
musixtex_0.115.ctan20130123-1.debian.tar.gz
 13955ffe3edfdda2c42fa65cde1cac785d0f7a85 7014686 
musixtex_0.115.ctan20130123-1_amd64.deb
Checksums-Sha256: 
 f19490d0da319291fa4f57a008bb6c0ef5656dc760fd7145f187d34406e7fabe 1371 
musixtex_0.115.ctan20130123-1.dsc
 97ef08e1b9d9f68d7bf2df854b37c9502165103035a6746845d7130cc7780e0e 6659436 
musixtex_0.115.ctan20130123.orig.tar.xz
 b225e0fd96c917c9714145d18852984af4e63037a16a2f53ff7fd100eacfda0e 21206 
musixtex_0.115.ctan20130123-1.debian.tar.gz
 e12cbee0764a89ca80ab2fe97432278b96f7ec6cc8a4672c92df962915026bc6 7014686 
musixtex_0.115.ctan20130123-1_amd64.deb
Files: 
 273b3972cc3d5e39b78544c63a5129e2 1371 tex optional 
musixtex_0.115.ctan20130123-1.dsc
 c3eb2f655a4fbb7b563cde0e2c6c736f 6659436 tex optional 
musixtex_0.115.ctan20130123.orig.tar.xz
 4f1ad2d10098f1aed643275f9e8447e2 21206 tex optional 
musixtex_0.115.ctan20130123-1.debian.tar.gz
 21010915a61009f976cae17cd54ef8c4 7014686 tex optional 
musixtex_0.115.ctan20130123-1_amd64.deb

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

iD8DBQFRAGFG0r9KownFsJQRAsaOAJ9g6foukv0kr6gh8bpQh+IADcYFMACghW5H
8bZN50kAtmYbq0LiS4dLmiw=
=EsUe
-END PGP SIGNATURE-


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



Accepted pmx 2.6.19.ctan20130123-1 (source amd64)

2013-01-30 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 23 Jan 2013 11:25:31 +0900
Source: pmx
Binary: pmx
Architecture: source amd64
Version: 2.6.19.ctan20130123-1
Distribution: experimental
Urgency: low
Maintainer: Debian TeX Maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
Description: 
 pmx- Preprocessor for MusiXTeX
Changes: 
 pmx (2.6.19.ctan20130123-1) experimental; urgency=low
 .
   * New upstream version based on CTAN upload
   * changed maintainer to the Debian TeX Maintainer mailing list with
 agreement of the current maintainer Roland, and put Roland and
 myself in Uploaders field
   * adapt debian/rules file to new layout, add get-orig-source script
   * don't build documentation, remove unnecessary build-deps
   * use dh_installtex instead of handwritten postinst
   * disable all patches, not needed anymore
Checksums-Sha1: 
 860a80efa9efa835ce2e2417611339328cc85508 1374 pmx_2.6.19.ctan20130123-1.dsc
 b5d533df2248dacafb1d3d7455635d37603def23 2207768 
pmx_2.6.19.ctan20130123.orig.tar.xz
 f70079b33be38938b9644b3857dd9c2e88a2be8e 7302 
pmx_2.6.19.ctan20130123-1.debian.tar.gz
 e2726f8d8b8ff30755a290aee824c8da0fd303c6 2684090 
pmx_2.6.19.ctan20130123-1_amd64.deb
Checksums-Sha256: 
 bb52f867dde569537f4f16a08a04ad495157ef5024f6c9e8bbb9a90443c003d8 1374 
pmx_2.6.19.ctan20130123-1.dsc
 95141d3fda50fa9132f76ab965f05aa8d60af4b97c8bda69eb79d35dd8ba351b 2207768 
pmx_2.6.19.ctan20130123.orig.tar.xz
 3eb8955c99338097b3cb87f505787352d46a494da50890b7a0c26bcbec4be1bf 7302 
pmx_2.6.19.ctan20130123-1.debian.tar.gz
 d30ed611070fa76943f2800b081e05320406d9f9dd92436d25bf92d46db035c2 2684090 
pmx_2.6.19.ctan20130123-1_amd64.deb
Files: 
 7fb35a9c40f8d95aedc44bbc2dfef6b7 1374 tex optional 
pmx_2.6.19.ctan20130123-1.dsc
 84326167a4bc3524bdd8f4e05abac176 2207768 tex optional 
pmx_2.6.19.ctan20130123.orig.tar.xz
 8222306bd1ce28460716a27f5dbc899d 7302 tex optional 
pmx_2.6.19.ctan20130123-1.debian.tar.gz
 a9b680080c208f2065f2f8ed7b7e2341 2684090 tex optional 
pmx_2.6.19.ctan20130123-1_amd64.deb

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

iD8DBQFRAGFO0r9KownFsJQRAghVAJ9lmmqmJQIO3kQ9AoheHjYPJhzasgCfdvWx
uEPj0eJpYET++nJBrUOnv9g=
=Nd/j
-END PGP SIGNATURE-


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



Accepted libsidplayfp 1.0.0-1 (source amd64 all)

2013-01-30 Thread GCS
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 10:27:18 +0100
Source: libsidplayfp
Binary: libsidplayfp libsidplayfp-dev libsidplayfp-dbg libsidplayfp-doc
Architecture: source amd64 all
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Laszlo Boszormenyi (GCS) g...@debian.hu
Changed-By: Laszlo Boszormenyi (GCS) g...@debian.hu
Description: 
 libsidplayfp - Library to play Commodore 64 music based on libsidplay2
 libsidplayfp-dbg - library to play Commodore 64 music based on libsidplay2 
(detached
 libsidplayfp-dev - library to play Commodore 64 music based on libsidplay2 
(developm
 libsidplayfp-doc - library to play Commodore 64 music based on libsidplay2  
(documen
Changes: 
 libsidplayfp (1.0.0-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 6bd4de49caf7aa7e8ae08eb72394bba86a3ca3ac 1308 libsidplayfp_1.0.0-1.dsc
 a6319ec2046b6055ed4ddf7a305f845d57324737 615490 libsidplayfp_1.0.0.orig.tar.gz
 01bc57778e03d52ecb5a7a676615e21f86a4eb0a 2683 
libsidplayfp_1.0.0-1.debian.tar.gz
 48faa4367b045352c20ab27c20fae5427e046a17 137712 libsidplayfp_1.0.0-1_amd64.deb
 4a034591ed3a26cc4f9462013be64bcc5ef09585 282498 
libsidplayfp-dev_1.0.0-1_amd64.deb
 828e1808c717706db3be980b211cf1113ad839f9 886656 
libsidplayfp-dbg_1.0.0-1_amd64.deb
 3b09a7c54b475ac81c29cce05ab7641c85b54d1e 583718 
libsidplayfp-doc_1.0.0-1_all.deb
Checksums-Sha256: 
 7d10ddfd48390ec36d4bbb5057b0fd27ea8cf4041218be2ba89d24673ccb5811 1308 
libsidplayfp_1.0.0-1.dsc
 3c021757cb24753a2e726003d8cf054d5f6248e88b1f29b1cf241073c332 615490 
libsidplayfp_1.0.0.orig.tar.gz
 ccf680402aa5c348c7c835a549d90e38385349130f4c0c822b66bac20d78b214 2683 
libsidplayfp_1.0.0-1.debian.tar.gz
 aa0f4f32bd09000571d2c07e7e3f7f7e88785c11e7c7fc6f62055db72b75de10 137712 
libsidplayfp_1.0.0-1_amd64.deb
 3ce3ca013f67d3ff7b555f1d77888b062488eb1452777446b3b226931d0c744e 282498 
libsidplayfp-dev_1.0.0-1_amd64.deb
 45268e0daa07066dcab5e215af205e18f26bd5cef83cea06e3f0ea460a36a4ef 886656 
libsidplayfp-dbg_1.0.0-1_amd64.deb
 6143633120d8a233c11ea87a7af612471338a307c2ab08b76d45a59d544d94c0 583718 
libsidplayfp-doc_1.0.0-1_all.deb
Files: 
 5ed462a177ca9a8e2cd2d50e4651c6b5 1308 sound extra libsidplayfp_1.0.0-1.dsc
 96544c3d10bb392a52f6190ccd0430eb 615490 sound extra 
libsidplayfp_1.0.0.orig.tar.gz
 88b5a1f6e7b4ca01aad1cf550c541e19 2683 sound extra 
libsidplayfp_1.0.0-1.debian.tar.gz
 9b961f527a448d4479a9a709a22ee0fe 137712 libs extra 
libsidplayfp_1.0.0-1_amd64.deb
 61670ab28a371be474f4d1418d81e0c9 282498 libdevel extra 
libsidplayfp-dev_1.0.0-1_amd64.deb
 f83313156086cf9254c575417130d5b3 886656 debug extra 
libsidplayfp-dbg_1.0.0-1_amd64.deb
 133f40b596361a216ddfbd891f29a0da 583718 doc extra 
libsidplayfp-doc_1.0.0-1_all.deb

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

iEYEARECAAYFAlEKAvUACgkQMDatjqUaT91k6QCfRY2TxtoENyPidIJzv38+cMm2
llYAniyh6mK641UgXew3I5Bvvm14Fsaq
=Seaf
-END PGP SIGNATURE-


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



Accepted opendkim 2.8.0~beta0-3 (source i386)

2013-01-30 Thread Scott Kitterman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 23:17:32 -0500
Source: opendkim
Binary: opendkim opendkim-tools libopendkim9 libopendkim-dev libvbr2 libvbr-dev 
librbl1 librbl-dev
Architecture: source i386
Version: 2.8.0~beta0-3
Distribution: experimental
Urgency: low
Maintainer: Mike Markley m...@markley.org
Changed-By: Scott Kitterman sc...@kitterman.com
Description: 
 libopendkim-dev - Headers and development libraries for the OpenDKIM library
 libopendkim9 - Library for signing and verifying DomainKeys Identified Mail 
sign
 librbl-dev - Headers/development libraries for the OpenDKIM RBL library
 librbl1- Library to support a DKIM based RBL system
 libvbr-dev - Headers and development libraries for the OpenDKIM VBR library
 libvbr2- Library for RFC 5518 Vouch By Reference (VBR)
 opendkim   - Milter implementation of DomainKeys Identified Mail
 opendkim-tools - Set of command line tools for OpenDKIM
Changes: 
 opendkim (2.8.0~beta0-3) experimental; urgency=low
 .
   * Extend mt.set_timeout(300) to all opendkim tests and also increase number
 of retries and retry interval to use the extra time
   * Fix typo in closes for last changelog entry
Checksums-Sha1: 
 b5037f59b1f7c6a9781ac5b552954504a3eb9367 1632 opendkim_2.8.0~beta0-3.dsc
 938cab730743e5de948065670c298fe40d300ac3 20236 opendkim_2.8.0~beta0-3.diff.gz
 baca856f7cc555a4f3e91981aee6807d765f227a 214712 opendkim_2.8.0~beta0-3_i386.deb
 1b6e0c17c2984151b86ca8b64fb750d711d30e13 186830 
opendkim-tools_2.8.0~beta0-3_i386.deb
 c0eb9f2be0ec3c4f9d234d25b989c97abab54558 96756 
libopendkim9_2.8.0~beta0-3_i386.deb
 c55fa242ba96b57e771f795f7792e92cb8e272fa 190910 
libopendkim-dev_2.8.0~beta0-3_i386.deb
 d0f01f68e18d4f29c98778ac7a424824f58e1e71 41372 libvbr2_2.8.0~beta0-3_i386.deb
 76ecebe82c7fa5fdbd0999a5f83ce02ec1e73abd 46066 
libvbr-dev_2.8.0~beta0-3_i386.deb
 9bef1372883e67d0a3ba464cf3c6645dff65e6ff 39282 librbl1_2.8.0~beta0-3_i386.deb
 f6073ba753507f617966a8d364f0a1ca59a17eb1 39514 
librbl-dev_2.8.0~beta0-3_i386.deb
Checksums-Sha256: 
 5229379facd3b5312699d1571978b90164eb6fbe81d050e3a4147fc7181b5045 1632 
opendkim_2.8.0~beta0-3.dsc
 b38fc112b5a467c23847c1d2d02d74e4a26309b6d08c364f04fd42f8fe33e4db 20236 
opendkim_2.8.0~beta0-3.diff.gz
 8d7fe3ef5747a11dc5433417c957e30a1809c73eb4b7d63f26c551729d916bf4 214712 
opendkim_2.8.0~beta0-3_i386.deb
 f17e096a775da0bea36a14fe4b72a6e1a1b1b0c7b40a33d2edbd4d8cc70ae06a 186830 
opendkim-tools_2.8.0~beta0-3_i386.deb
 7ccdb20e466a790959ff1e93193fc22b32c01525695441816034a84747a1356e 96756 
libopendkim9_2.8.0~beta0-3_i386.deb
 309b86c02d3ba306100139fc2c528d75d97b1e46d2e181d0440cd7d8287a9ad4 190910 
libopendkim-dev_2.8.0~beta0-3_i386.deb
 58b6109e8894c1a53d800b2e0a5e86c0d130fa1548a34479e2f941584e4facf5 41372 
libvbr2_2.8.0~beta0-3_i386.deb
 6a716547ff30e055c43f4658b6c361c008484ca568bb72a6dfd3f9f86f0ab3ef 46066 
libvbr-dev_2.8.0~beta0-3_i386.deb
 4f660207b630a58a964d3b15c0fbe9fa36991be9e7c7951cdaa14acc3e82c426 39282 
librbl1_2.8.0~beta0-3_i386.deb
 2daa27f641136f252211261ed28202e616622fc50e488ed46ed4a9d4126dbcd5 39514 
librbl-dev_2.8.0~beta0-3_i386.deb
Files: 
 fdebad916425a0c6da6dbbc151efe0aa 1632 mail extra opendkim_2.8.0~beta0-3.dsc
 94156c193a233bd4827c9f9bf0e02812 20236 mail extra 
opendkim_2.8.0~beta0-3.diff.gz
 5bf8622632102b94acf33d81792eaad5 214712 mail extra 
opendkim_2.8.0~beta0-3_i386.deb
 259c532cf013c61b40b609a15690e6a7 186830 mail extra 
opendkim-tools_2.8.0~beta0-3_i386.deb
 5ea407b491b15eeb703856b2748e08b1 96756 libs extra 
libopendkim9_2.8.0~beta0-3_i386.deb
 aea24ae32ef10682a9ffd994c5a13b2c 190910 libdevel extra 
libopendkim-dev_2.8.0~beta0-3_i386.deb
 871fbba1bdd557c6c94e7e5eb34da0e4 41372 libs extra 
libvbr2_2.8.0~beta0-3_i386.deb
 d131eadd891944c258385008e6b538cb 46066 libdevel extra 
libvbr-dev_2.8.0~beta0-3_i386.deb
 f84cd41760025e7d14204b64ae610178 39282 libs extra 
librbl1_2.8.0~beta0-3_i386.deb
 92c32599168feb0a3481dc05577e7e27 39514 libdevel extra 
librbl-dev_2.8.0~beta0-3_i386.deb

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

iEYEARECAAYFAlEKAeYACgkQHajaM93NaGoNAACfXWnJTXYP3pkR3Z03+VJt6geC
LMwAn0XFVj0/5bDTeoIkIgD24/dRgIOA
=RPpA
-END PGP SIGNATURE-


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



Accepted sidplayfp 1.0.0-1 (source amd64)

2013-01-30 Thread GCS
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 10:30:17 +0100
Source: sidplayfp
Binary: sidplayfp
Architecture: source amd64
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Laszlo Boszormenyi (GCS) g...@debian.hu
Changed-By: Laszlo Boszormenyi (GCS) g...@debian.hu
Description: 
 sidplayfp  - Fork of sidplay2, a C64 and C128 music player
Changes: 
 sidplayfp (1.0.0-1) unstable; urgency=low
 .
   * New upstream release.
 .
   [ Bart Martens ba...@debian.org ]
   * Update watch file.
Checksums-Sha1: 
 5a6b0ba52ddf70a22246f1d39043f5a19072595a 1183 sidplayfp_1.0.0-1.dsc
 6aaad8b588449c848d9755edb9f0b52c25617cc2 441014 sidplayfp_1.0.0.orig.tar.gz
 262e3a639d4075ecdcc2555dcbc254a513d832d4 2346 sidplayfp_1.0.0-1.debian.tar.gz
 d174f92e53c3f962f3c650d8c3c8c18cf98777b2 60216 sidplayfp_1.0.0-1_amd64.deb
Checksums-Sha256: 
 c8c0c9ceeb7dbfb3d4927cffb50fbd05e722f45cabfd325c468a5118cded4b4a 1183 
sidplayfp_1.0.0-1.dsc
 fc5754f4e7e028c3bc93170ac8087d16473815524ea462fb067158d77e2b4b01 441014 
sidplayfp_1.0.0.orig.tar.gz
 cda933abc9503ef69c299209e9c38e1284e1df78adcb7b9a9053217a677e4ed1 2346 
sidplayfp_1.0.0-1.debian.tar.gz
 355638c4a0b5f4309afae497d479c64b0917598c545be6f1f47fbc9f404048ab 60216 
sidplayfp_1.0.0-1_amd64.deb
Files: 
 f36679eae41d0d1c6d41354b6f5071b6 1183 sound extra sidplayfp_1.0.0-1.dsc
 54f155fe7abc98652a427b6fec030a51 441014 sound extra sidplayfp_1.0.0.orig.tar.gz
 e49714006196774098a852c2b93ec149 2346 sound extra 
sidplayfp_1.0.0-1.debian.tar.gz
 ce586ccb79c92e796a9e0fb1a4e96c0c 60216 sound extra sidplayfp_1.0.0-1_amd64.deb

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

iEYEARECAAYFAlEKB98ACgkQMDatjqUaT91kYACfVFD0/GoNmC13SIGP36oUz4ax
5aMAn24fCMq0hig5zOltEsrRdyQd4BCj
=GoMV
-END PGP SIGNATURE-


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



Accepted scrub 2.5.2-1 (source amd64)

2013-01-30 Thread Chris Taylor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 30 Jan 2013 21:13:09 +
Source: scrub
Binary: scrub
Architecture: source amd64
Version: 2.5.2-1
Distribution: unstable
Urgency: low
Maintainer: Chris Taylor ctay...@debian.org
Changed-By: Chris Taylor ctay...@debian.org
Description: 
 scrub  - writes patterns on magnetic media to thwart data recovery
Changes: 
 scrub (2.5.2-1) unstable; urgency=low
 .
   * New upstream release.
   * Remove patch 01-Manpage.
   * Renamed patch 02-Includes to 01-Includes.
Checksums-Sha1: 
 9d79fe94793788fd991e563b0ee853fe02368088 1054 scrub_2.5.2-1.dsc
 863e5894e6acb3f922cb25f58e260f9c59b55c14 161468 scrub_2.5.2.orig.tar.bz2
 c45ba4b6657497754de502c85a151d0222e249c5 2626 scrub_2.5.2-1.debian.tar.gz
 ef6e60afc62e4209ad105f5d30e45393ba3fd4d5 32894 scrub_2.5.2-1_amd64.deb
Checksums-Sha256: 
 8ebf273cf2a3aaf0e75e7b83b05568074b3d8b2b97992f5a8a7b11e2fee70fc7 1054 
scrub_2.5.2-1.dsc
 51ee4963759cf07b186bb583ef2839618c1131dfae849ca76a2259cbc461 161468 
scrub_2.5.2.orig.tar.bz2
 cddf3767524c226b8d3878fdc4d7edab75dfcb446883d156b0b94378f59733e4 2626 
scrub_2.5.2-1.debian.tar.gz
 2cf520bc8f9fd66bd25c065405c010a4f209b2c086c92cbec8b8a9fbc5397e87 32894 
scrub_2.5.2-1_amd64.deb
Files: 
 c569c9bd72e844c7de6baa54c8fcc155 1054 utils extra scrub_2.5.2-1.dsc
 1d69febde39ec7480ef60347938b2141 161468 utils extra scrub_2.5.2.orig.tar.bz2
 a67db6102c852badd96d0cf815b33b22 2626 utils extra scrub_2.5.2-1.debian.tar.gz
 a11eb037b4beec447cc74d001d260162 32894 utils extra scrub_2.5.2-1_amd64.deb

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

iEYEARECAAYFAlEJ9aMACgkQLpNUoan9SCFSggCfX748BIFvq9LmPA+Q3EPcXh5D
LLUAnjUJ7DXrq5pTodPW8EctO83FKryl
=qy3X
-END PGP SIGNATURE-


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