Re: Bug#697234: ITP: libjs-jquery-slides -- Simple slideshow plugin for jQuery

2013-01-03 Thread Alberto Luaces
Agustin Henze writes:

 Package: wnpp
 Severity: wishlist
 X-Debbugs-CC: debian-devel@lists.debian.org

Package name: libjs-jquery-slides
 Version: 1.1.9
 Upstream Author: Nathan Searles
 URL: http://nathansearles.com
 License: Apache-2.0
 Description:  Simple slideshow plugin for jQuery
  A simple slideshow plugin for jQuery packed with a useful set of
  features to help novice and advanced developers alike create
  elegant and user-friendly slideshows.

The actual URL is http://slidesjs.com/ .

-- 
Alberto


-- 
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/87d2xmd6hp@eps142.cdf.udc.es



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Reinhard Tartler
On Wed, Jan 2, 2013 at 10:26 PM, Wouter Verhelst wou...@debian.org wrote:
 On Wed, Jan 02, 2013 at 01:05:46PM +0100, Guillem Jover wrote:
 - Private dependencies, as they leak to rdeps. When a library uses
   another library privately this dependency gets linked in directly
   in all other rdeps, when that library stop depending on that
   private dependency, all rdeps need to be rebuilt.

 Strictly speaking, if you're only using static libraries this is not
 really true; once you've compiled something against a static library,
 the static library might change in whatever way it sees fit, the
 compiled binary will continue to work, with or without recompilation.

Consider this from the application perspective: Say an application
links against a library libfoo.a. At some point, libfoo decides to
include compression support, and requires functionality from libz. No
problem for the library package maintainer; he just adds a
build-dependency  on libz-dev, and uploads the package. At some point
the security team needs to update the application and finds the
package to FTBFS because libz is missing. The solution, of course, is
now to extend the build-dependencies of the application package.
However, this is not obvious and in any case more effort than a
binNMU.

 This isn't true if you're using a mix of shared and static libraries, of
 course.

mixing shared and static libraries makes the situation no less
complicated, that's true.


-- 
regards,
Reinhard


-- 
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/CAJ0cceZZYy2QcsFKO4uu5B4zm+uz3r7Ou0PAWH==dz5abe4...@mail.gmail.com



Re: Bug#696593: ITP: sun -- sun calculates the sun's rise/set times

2013-01-03 Thread Helmut Grohne
On Sun, Dec 23, 2012 at 03:54:06PM +0100, Steffen Vogel wrote:
   Package name: sun
   Version : 0.1
   Upstream Author : Steffen Vogel p...@steffenvogel.de
   URL : 
 http://www.steffenvogel.de/2012/12/23/cron-jobs-fur-sonnenauf-untergang/
   License : GPL
   Programming Lang: ANSI C
   Description : sun calculates the sun's rise/set times, the solar noon 
 and the daylight time duration

This package apparently shares functionality with the redshift package
already in Debian. Neither of the packages expose the common
functionality (computing sun rise) as a library for others to use. Would
it be possible for you to provide a shared library for others to rely
on? That could avoid further duplication.

Are there more tools providing this functionality?

Helmut


-- 
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/20130103102851.ga7...@alf.mars



Re: Bug#696593: ITP: sun -- sun calculates the sun's rise/set times

2013-01-03 Thread Guus Sliepen
On Thu, Jan 03, 2013 at 11:28:52AM +0100, Helmut Grohne wrote:

Package name: sun
Description : sun calculates the sun's rise/set times, the solar noon 
  and the daylight time duration
 
 This package apparently shares functionality with the redshift package
 already in Debian. Neither of the packages expose the common
 functionality (computing sun rise) as a library for others to use. Would
 it be possible for you to provide a shared library for others to rely
 on? That could avoid further duplication.
 
 Are there more tools providing this functionality?

Libnova is a shared library that allows you to calculate rise and set times for
any astronomical object, including the Sun.

-- 
Met vriendelijke groet / with kind regards,
  Guus Sliepen g...@debian.org


signature.asc
Description: Digital signature


Re: [RFC] Go (golang) packaging

2013-01-03 Thread Florian Weimer
* Wouter Verhelst:

 Strictly speaking, if you're only using static libraries this is not
 really true; once you've compiled something against a static library,
 the static library might change in whatever way it sees fit, the
 compiled binary will continue to work, with or without recompilation. 

My main worry is that, for example, a fix in another, otherwise
unrelated dependency prompts a rebuild, and this picks up behavioral
changes which haven't been visible before, but lingering in the static
library.  Essentially, we end up with non-reproducible builds.

The way we currently do QA, it is important that we do not release
many packages with statically linked copies of outdated libraries.  We
wouldn't have much chance spotting the impact of such lingering
changes once they are materializing.  Non-reproducible builds are also
a software freedom issue (practically speaking).


-- 
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/87a9sqzfbe@mid.deneb.enyo.de



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Michael Stapelberg
Hi Reinhard,

Reinhard Tartler siret...@gmail.com writes:
 Consider this from the application perspective: Say an application
 links against a library libfoo.a. At some point, libfoo decides to
 include compression support, and requires functionality from libz. No
 problem for the library package maintainer; he just adds a
 build-dependency  on libz-dev, and uploads the package. At some point
 the security team needs to update the application and finds the
 package to FTBFS because libz is missing. The solution, of course, is
 now to extend the build-dependencies of the application package.
 However, this is not obvious and in any case more effort than a
 binNMU.
Thanks for your example. It occurs to me that the following way deals
with the problem:

The hypothetical “foo” package is packaged as “golang-foo-dev”.
The hypothetical application is packaged as “barapp”, which
Build-Depends on “golang-foo-dev”.

When golang-foo-dev starts depending on additional libraries, say
“golang-zlib-dev”, it not only adds that library to its Build-Depends,
but also to its Depends. This is okay because you cannot use
“golang-foo-dev” without having “golang-zlib-dev” installed (as you
explained), and normal users don’t get an unnecessary dependency because
“barapp” doesn’t Depend (only Build-Depends) on either of these
libraries anyway.

I hope my explanation was clear, the tl;dr is “static golang libraries
should mirror Build-Depends into Depends”. What do you think?

-- 
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/x6r4m2ldgo@midna.zekjur.net



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Alastair McKinstry
On 2013-01-03 08:41, Reinhard Tartler wrote:
 On Wed, Jan 2, 2013 at 10:26 PM, Wouter Verhelst wou...@debian.org wrote:
 On Wed, Jan 02, 2013 at 01:05:46PM +0100, Guillem Jover wrote:
 - Private dependencies, as they leak to rdeps. When a library uses
   another library privately this dependency gets linked in directly
   in all other rdeps, when that library stop depending on that
   private dependency, all rdeps need to be rebuilt.
 Strictly speaking, if you're only using static libraries this is not
 really true; once you've compiled something against a static library,
 the static library might change in whatever way it sees fit, the
 compiled binary will continue to work, with or without recompilation.
 Consider this from the application perspective: Say an application
 links against a library libfoo.a. At some point, libfoo decides to
 include compression support, and requires functionality from libz. No
 problem for the library package maintainer; he just adds a
 build-dependency  on libz-dev, and uploads the package. At some point
 the security team needs to update the application and finds the
 package to FTBFS because libz is missing. The solution, of course, is
 now to extend the build-dependencies of the application package.
 However, this is not obvious and in any case more effort than a
 binNMU.

Yes, there are compile-time dependencies for any static library. We do
need to track
these. In practice we already have a mechanism in pkg-config, but this
is (I believe)
not properly formalised in Debian.

In the case you mention, if libfoo now depends on libz, adding a build
dependency
on libz-dev fixes the problem with libfoo.so as it will automatically
pull in libz.so
However, the packager should _also_ provide a pkg-config file and this
will have
a list of the dependencies , so
LIBS:=` pkg-config --static -libs foo`
does the right thing, and the updated libfoo-dev package will include
-lz on the libs line.

I think we should do the following:

(1) pkg-config files for libraries, in particular all those that ship
static libs, to be a
release goal for jessie.

It would be useful / interesting if pkg-config information could be used
to generate dependencies
for the libfoo-dev package: ie. if libz is _really_ needed for libfoo,
then libfoo-dev should depend
on libz-dev, to provide libz.a. But this is harder than it looks.

Consider the case of netcdf. This ships a libnetcdf.a static library,
and this may be used in scientific
codes for optimisation as well as reliability. But in modern terms,
libnetcdf, which reads netcdf files,  may also accept a URL as well as a
filename. In this case, it uses libcurl to retrieve the file, but pulls
in a huge trace of packages, from gnutls, ssl , pam packages, psql, msql
, etc in order to
get authentication.  In practice this means I might build my scientific
binary with
libnetcdf.a static and dynamically link libcurl.so (which may never be
called in my
actual workloads) to avoid pulling in the whole distro.

So recursively pulling in all potentially needed static libs is not an
option, but examining all
binaries to find what static libs were used to generate it might be
problematic.
 

 This isn't true if you're using a mix of shared and static libraries, of
 course.
 mixing shared and static libraries makes the situation no less
 complicated, that's true.



regards
Alastair

-- 
Alastair McKinstry  , alast...@sceal.ie , mckins...@debian.org
http://blog.sceal.ie

Anyone who believes exponential growth can go on forever in a finite world
is either a madman or an economist - Kenneth Boulter, Economist.


-- 
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/50e568b3.6070...@sceal.ie



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Michael Stapelberg
Hi Florian,

Florian Weimer f...@deneb.enyo.de writes:
 My main worry is that, for example, a fix in another, otherwise
 unrelated dependency prompts a rebuild, and this picks up behavioral
 changes which haven't been visible before, but lingering in the static
 library.  Essentially, we end up with non-reproducible builds.
Could you provide an example please? I don’t understand how this is
different with static linking than with dynamic linking yet.

-- 
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/x6obh6ld9b@midna.zekjur.net



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Florian Weimer
* Michael Stapelberg:

 Florian Weimer f...@deneb.enyo.de writes:
 My main worry is that, for example, a fix in another, otherwise
 unrelated dependency prompts a rebuild, and this picks up behavioral
 changes which haven't been visible before, but lingering in the static
 library.  Essentially, we end up with non-reproducible builds.

 Could you provide an example please? I don’t understand how this is
 different with static linking than with dynamic linking yet.

With dynamic linking, you pick up the behavior change along with
apt-get upgrade, so I expect that we get much more testing of the
combination during development.

Technically, you are correct that we generally do not do purely static
linking—preprocessor macros can change, and so can the value of enum
constants.  And with C++, there are many, many more language features
which escape dynamic linking.  But I think the lingering change
phenomenon is still a valid concern with static linking.

(One approach which doesn't seem to have been discussed so far is
compile-on-installation, à la common-lisp-controller.  Not sure if
this is a good idea.  Linking-on-installation does not appear to be
sufficient.)


--
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/874niyze8w@mid.deneb.enyo.de



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Sune Vuorela
On 2013-01-03, Alastair McKinstry alastair.mckins...@sceal.ie wrote:
 (1) pkg-config files for libraries, in particular all those that ship
 static libs, to be a
 release goal for jessie.

rather get rid of static libs.

 It would be useful / interesting if pkg-config information could be used
 to generate dependencies

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=534966

/Sune


-- 
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/slrnkearrs.me.nos...@sshway.ssh.pusling.com



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Florian Weimer
* Sune Vuorela:

 On 2013-01-03, Alastair McKinstry alastair.mckins...@sceal.ie wrote:
 (1) pkg-config files for libraries, in particular all those that ship
 static libs, to be a
 release goal for jessie.

 rather get rid of static libs.

We might want to extend static libraries with LTO data one day.
(We could even ship performance-criticial programs ready for LTO.)
Of course, this exacerbates the rebuild issue.


-- 
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/87fw2i5vw8@mid.deneb.enyo.de



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Michael Stapelberg
Hi Florian,

Florian Weimer f...@deneb.enyo.de writes:
 Could you provide an example please? I don’t understand how this is
 different with static linking than with dynamic linking yet.

 With dynamic linking, you pick up the behavior change along with
 apt-get upgrade, so I expect that we get much more testing of the
 combination during development.
I’m still not sure I understand you. Could you please provide an
example? Participating in this discussion makes no sense for me until I
understand your point.

-- 
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/x6licalbt8@midna.zekjur.net



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Florian Weimer
* Michael Stapelberg:

 Hi Florian,

 Florian Weimer f...@deneb.enyo.de writes:
 Could you provide an example please? I don’t understand how this is
 different with static linking than with dynamic linking yet.

 With dynamic linking, you pick up the behavior change along with
 apt-get upgrade, so I expect that we get much more testing of the
 combination during development.

 I’m still not sure I understand you. Could you please provide an
 example? Participating in this discussion makes no sense for me until I
 understand your point.

Okay.  Suppose you statically link into your application a copy of
OpenSSL and use it to make TLS connections, in a way that causes
OpenSSL to pick the highest supported TLS version.  We upgrade OpenSSL
and add TLSv1.2 support to it (or we remove RC4 support).  It turns
out that the application connects to a server which is broken and
refuses to handshake at version 1.2.  This means that if we recompile
the application, linking against the current OpenSSL version and
incidentally enabling TLSv1.2 support, it ceases to work.

With dynamic linking, we'd see this immediately, as soon as OpenSSL
upgraded (say, because it has entered testing).  With static linking,
we might never see it at all because a recompilation is necessary to
expose the non-working combination.

One might argue that the static case is actually better because it is
more predictable, but our post-release support model is heavily
dependent on minimal changes (because we cannot do full QA
post-release).  Such minimal changes are impossible with static
linking, unless we aggressively recompile and relink reverse
dependencies as soon as possible, so that we have no lingering
outdated copies in a release.

I hope this clarifies things a bit.


--
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/87bod65v7x@mid.deneb.enyo.de



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Paul Wise
On Thu, Jan 3, 2013 at 8:04 PM, Florian Weimer wrote:

 One might argue that the static case is actually better because it is
 more predictable, but our post-release support model is heavily
 dependent on minimal changes (because we cannot do full QA
 post-release).  Such minimal changes are impossible with static
 linking, unless we aggressively recompile and relink reverse
 dependencies as soon as possible, so that we have no lingering
 outdated copies in a release.

 I hope this clarifies things a bit.

With Built-Using, we get a way to rebuild packages that embed parts of
other packages:

http://www.debian.org/doc/debian-policy/ch-relationships.html#s-built-using

Not sure if the buildd stuff will automatically schedule rebuilds or
if we will notice due to britney knowing about b-u and blocking
testing migrations, anyone got more details about b-u?

-- 
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/CAKTje6Hwa6BiFqJ_NdR=EN4nR5pVsd45gz3Za7=avu0kx_z...@mail.gmail.com



Processed: Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Debian Bug Tracking System
Processing control commands:

 reassign -1 general
Bug #697270 [kernel-image] PC 32-bit programs fails to work on amd64
Warning: Unknown package 'kernel-image'
Bug reassigned from package 'kernel-image' to 'general'.
No longer marked as found in versions 3.2.0.
Ignoring request to alter fixed versions of bug #697270 to the same values 
previously set

-- 
697270: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=697270
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.b697270.135721629716389.transcr...@bugs.debian.org



Re: binutils debian cross build misses ldscripts

2013-01-03 Thread Wookey
+++ Franz Zinn [2013-01-02 14:42 +]:
 Hi,
 
 I am trying to build a cross version of binutils (Squeeze version
 2.20.1) using the directions in debian/README.cross with the command
 line
 
 TARGET=sparc fakeroot debian/rules binary-cross

Hmm. I use TARGET=sparc dpkg-buildpackage

the binary-cross target now says:
Please use dpkg-buildpackage instead of calling binary-cross
directly; see README.cross

That's true in the 2.22 ansd 2.23 I have to hand. Appraently there
have been changes here since squeeze. It probably amounts to the same
thing, but I'd check and see if that makes any difference for you.

I've never tested a sparc build in my life, but I do know that the
cross-build packaging for binutils is generally in good shape and
works well for armhf/armel/arm64

 However trying to assemble and link for a sun4 system (-m sun4
 argument to sparc-linux-gnu-ld ), results in a error that
 ldscripts/sun4.x is not found.
 
 Indeed the cross build process does not install the ldscripts into the
 deb package, even though the are generated and can be found in the
 builddir-sparc-linux-gnu directory.
 
 Is this a bug or feature ? Is there any easy (automated) way to do
 build a package with the ldscripts included.

The build above should work - if it doesn't that's a bug. The sparc
packaging has probably just got bit-rot because it's not being used
much, but if you are lucky it's because you are using an outdated
build rune.

BTW I have submitted a bug to normalise these cross-runes between
packages (so we don't have 'TARGET' for binutils and 'GCC_TARGET' for
gcc. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695595 so at
some point the official build runes should become:

DEB_TARGET_ARCH=arch dpkg-buildpackage -b


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/20130103124250.gj9...@stoneboat.aleph1.co.uk



Bug#697272: ITP: ruby-spoon -- FFI binding of the posix_spawn function

2013-01-03 Thread Hideki Yamane
Package: wnpp
Severity: wishlist
Owner: Hideki Yamane henr...@debian.org
X-Debbugs-CC: debian-devel@lists.debian.org, 
pkg-ruby-extras-maintain...@lists.alioth.debian.org

   Package name: ruby-spoon
Version: 0.0.2
Upstream Author: Charles Oliver Nutter
URL: https://github.com/headius/spoon
License: Apache-2.0

Description: FFI binding of the posix_spawn function
 Spoon is an FFI binding of the posix_spawn function, providing fork+exec
 functionality in a single shot.

-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane


-- 
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/20130103214139.258892ef0ae4037f48b02...@debian.or.jp



Re: [RFC] Go (golang) packaging

2013-01-03 Thread Ansgar Burchardt
Paul Wise p...@debian.org writes:
 With Built-Using, we get a way to rebuild packages that embed parts of
 other packages:

 http://www.debian.org/doc/debian-policy/ch-relationships.html#s-built-using

 Not sure if the buildd stuff will automatically schedule rebuilds or
 if we will notice due to britney knowing about b-u and blocking
 testing migrations, anyone got more details about b-u?

Built-Using only instructs dak to keep additional source packages in the
archive.  This is done to comply with licenses that require the full
source to be available and with the DFSG requirement to provide source
when, for example, linking static libraries, using *-source packages
(e.g. gcc-avr uses the source from gcc-*-source) or embedding binaries
from other packages (e.g. debian-installer).

Nothing else uses it so far, but using it to make sure the references
source packages are not too outdated seems useful. Otherwise any upload
in stable might introduce significant changes (for example gcc-avr might
use a new upstream release of gcc-*-source).

Ansgar


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87licabeaf@eisei.43-1.org



Re: Processed: Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Holger Levsen
Hi Gergely,

if you take the effort to reassign to general, why dont you lower the severity 
as well?

And, if you explain how this is a user error, why dont you close it straight 
away?


cheers,
Holger


-- 
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/201301031632.56423.hol...@layer-acht.org



Bug#697270: marked as done (PC 32-bit programs fails to work on amd64)

2013-01-03 Thread Debian Bug Tracking System
Your message dated Thu, 3 Jan 2013 16:32:54 +0100
with message-id 201301031632.56423.hol...@layer-acht.org
and subject line Re: Processed: Re: Bug#697270: PC 32-bit programs fails to 
work on amd64
has caused the Debian Bug report #697270,
regarding PC 32-bit programs fails to work on amd64
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
697270: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=697270
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: kernel-image
Version: 3.2.0
severity: serious

(kernel-image-3.2.0-4-amd64-di)

Dear developers,

32-bit programs, such as FireFox refuse to work on Debian 7.0 64-bit (amd64).
This is new fresh stock install from di-BETA4 Wheezy DVD. (KDE)
The same works great on Debian 6.0 64-bit !

user@deb7vm:~/Downloads$ uname -a
Linux deb7vm 3.2.0-4-amd64 #1 SMP Debian 3.2.35-2 x86_64 GNU/Linux
user@deb7vm:~/Downloads$ arch
x86_64

32-bit user-space app -- execution FAILURE !!!
user@deb7vm:~/Downloads$ file 32bit/firefox/firefox-bin
32bit/firefox/firefox-bin: ELF 32-bit LSB executable, Intel 80386,
version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux
2.6.9, stripped
user@deb7vm:~/Downloads$ 32bit/firefox/firefox-bin
bash: 32bit/firefox/firefox-bin: No such file or directory

64-bit user-space app - WORKS !
user@deb7vm:~/Downloads$ file 64bit/firefox/firefox-bin
64bit/firefox/firefox-bin: ELF 64-bit LSB executable, x86-64, version
1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.9,
stripped
user@deb7vm:~/Downloads$ 64bit/firefox/firefox-bin
[programs WORKS]

Firefox 64-bit taken from:
http://mozilla.mirrors.tds.net/pub/mozilla.org/firefox/releases/latest/linux-x86_64/en-US/firefox-17.0.1.tar.bz2
The 32-bit comes from mozilla.org home page. (it is the default)

Please enable 32-bit user-space apps to work on 64-bit O.S. *by
default*. There are tons of desktop 32-bit apps for Linux, that should
*just work*. I have no clue if the problem is kernel or someplace
else, so please forward this issue to the appropriate package team.
The CLI output (saying file not found) is of no help either, and is
very misleading.

I am using amd64 Debian GNU/Linux 7.0, kernel 3.2.
-- 
-Alexey Eromenko Technologov
---End Message---
---BeginMessage---
Hi Gergely,

if you take the effort to reassign to general, why dont you lower the severity 
as well?

And, if you explain how this is a user error, why dont you close it straight 
away?


cheers,
Holger---End Message---


Re: Processed: Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Holger Levsen
Hi Gergelzz :-)

On Donnerstag, 3. Januar 2013, Gergelzz Nagy wrote:
 Because I haven't slept this year yet, and I forgot to change the Cc: to
 -done@, and there's been about 5 minutes between the Control: header and
 the rest of my mail, during which I completely forgot about the former.

ouch, I hope you're on Hawaii then! :-) Good night then  thanks for caring! 


cheers,
Holger



-- 
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/201301031656.04010.hol...@layer-acht.org



Re: Processed: Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Gergelzzzzzzzzzz Nagy
Holger Levsen hol...@layer-acht.org writes:

 Hi Gergely,

 if you take the effort to reassign to general, why dont you lower the 
 severity 
 as well?

 And, if you explain how this is a user error, why dont you close it straight 
 away?

Because I haven't slept this year yet, and I forgot to change the Cc: to
-done@, and there's been about 5 minutes between the Control: header and
the rest of my mail, during which I completely forgot about the former.

Sorry 'bout that.

-- 
|8[


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87hamyjmtu.fsf@algernon.balabit



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
User error? Huh ?

No ! This is a Debian Bug !
Debian clearly says: File does not exist, while in fact it DOES EXIST.
This is a 100% proof of Debian bug.

-- 
-Alexey Eromenko Technologov


-- 
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/CAOJ6w=Gr0Tk9Pq4ghcZPgf3ad89=if+qormg+eph-a6nea6...@mail.gmail.com



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
Please keep in mind, that I have wasted 4 hours of my personal time on
this Debian bug, and do you think this is reasonable ?

-- 
-Alexey Eromenko Technologov


-- 
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/CAOJ6w=ekcjtaqa2uschmsgybnnbuntdubhwqyyuzg9guawj...@mail.gmail.com



Re: binutils debian cross build misses ldscripts

2013-01-03 Thread Wookey
+++ Wookey [2013-01-03 12:42 +]:
 Franz Zinn wrote:

 Hmm. I use TARGET=sparc dpkg-buildpackage

I tried this (with 2.23.1) and found a bug - --target in configure is set to 
'sparc'
rasther than sparc-linux-gnu which means it builds for sparc-sunos.

This may well be due to my modifications for DEB_TARGET_ARCH so I've
fixed that and will submit an updated patch.

that built OK, but yes there are no ldscripts/* files in there. 

 However trying to assemble and link for a sun4 system (-m sun4
 argument to sparc-linux-gnu-ld ), results in a error that
 ldscripts/sun4.x is not found.

 Indeed the cross build process does not install the ldscripts into the
 deb package, even though the are generated and can be found in the
 builddir-sparc-linux-gnu directory.

I just read this a bit more carefully, and realised that I missed an
important point. You want to target sunos rather than sparc-linux-gnu?
Can one expect that to work using a binutils built for linux (i.e the
ABI stuff is all the same, only the linkage changes?) I wouldn't
expect that to work without building a binutils specifically targeting
sparc-sun-sunos4.1 (or something like that - I don't know which rune
is right )

dpkg-architecture -L list a lot of architectures/ABIs there is solaris
and opensolaris, but not sunos. Is one of those right?

The debian packaging primarily aims at building cross-toolchains
suitable for building packages for debian architectures. If they also
build other stuff then that's cool, but it's a bonus, and not
necessarily tested. 

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/20130103171725.gl9...@stoneboat.aleph1.co.uk



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Thomas Goirand
On 01/04/2013 01:02 AM, Alexey Eromenko wrote:
 Please keep in mind, that I have wasted 4 hours of my personal time on
 this Debian bug, and do you think this is reasonable ?

It all depends.

How did you even install Firefox 32 bits? We don't have such a
package in Debian. It's rebranded as iceweasel, because the
mozilla foundation wanted it this way (it's complicated, so I
will not go into details about why, though you can search on
your favorite web search engine about it).

And to reply to your question:

Yes, it's reasonable to spend 4 hours of your personal time on a
Debian bug. Hundreds of people are spending even more time than
this on a daily basis in order to improve Debian.

No, it's not reasonable to report you can't run Firefox 32 bits
on a 64 bits arch Debian, when really, you'd better just do:
apt-get install iceweasel

and use your newly installed browser in 64 bits mode...

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/50e5bf1e.3000...@debian.org



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
On Thu, Jan 3, 2013 at 7:25 PM, Thomas Goirand z...@debian.org wrote:

 on a 64 bits arch Debian, when really, you'd better just do:
 apt-get install iceweasel

 and use your newly installed browser in 64 bits mode...

Not, because my job requires the latest FireFox (latest-and-greatest).
And the standard FireFox, which is 32-bits, should work.
Debian should ship with at least basic 32-bit packages, for LSB
dependency. (3rd party vendors code for 32-bit LSB)

-- 
-Alexey Eromenko Technologov


-- 
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/CAOJ6w=GLx_+t9pgA=gSqCTuu=d+b6_wbd4xa0ktqkj-tdyx...@mail.gmail.com



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Russ Allbery
Alexey Eromenko al4...@gmail.com writes:

 User error? Huh ?

 No ! This is a Debian Bug !
 Debian clearly says: File does not exist, while in fact it DOES EXIST.
 This is a 100% proof of Debian bug.

That's the error message that you get when the dynamic loader for a binary
doesn't exist.  I think that's been the case for as long as Linux has
existed.

It is really confusing the first time you run into it, and indeed I had to
debug a problem due to that error just the other day.  But it's how some
rather low-level components of the system work.  One could argue that it's
a wishlist bug against the kernel, where I think one would have to add a
new errno value just for this error so that it can be distinguished from
the general ENOENT case.  But, even in that case, this would have to be
something changed upstream; it's not the sort of thing that Debian can
carry a local patch for.  Fiddling around with the error return codes of
system calls in a single distribution is not a good idea.  That sort of
thing tends to have unforseen compatibility issues.

So the short version is that, regardless, this is not a bug that Debian is
going to fix specifically in Debian.  If it changes upstream, obviously we
and all the other distributions will pick up that change.

-- 
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/87a9sqyxxv@windlord.stanford.edu



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
But having 32-bit LSB compliance will help people a _LOT_.

-- 
-Alexey Eromenko Technologov


-- 
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/CAOJ6w=H9b9+paJGv5h0_Lp8_WDdOyK9wjhSa+=xlqdog5uu...@mail.gmail.com



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Aron Xu
On Fri, Jan 4, 2013 at 1:31 AM, Alexey Eromenko al4...@gmail.com wrote:
 On Thu, Jan 3, 2013 at 7:25 PM, Thomas Goirand z...@debian.org wrote:

 on a 64 bits arch Debian, when really, you'd better just do:
 apt-get install iceweasel

 and use your newly installed browser in 64 bits mode...

 Not, because my job requires the latest FireFox (latest-and-greatest).
 And the standard FireFox, which is 32-bits, should work.
 Debian should ship with at least basic 32-bit packages, for LSB
 dependency. (3rd party vendors code for 32-bit LSB)


Btw, if you want the latest Nightly, try
http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/
or latest Firefox, try
http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/latest/

All of them are available under both 32bit and 64bit x86 architectures.


-- 
Regards,
Aron Xu


-- 
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/CAMr=8w7lzvob5ubn3o_7rgqd_ndh5_jssrremctnksuzgnu...@mail.gmail.com



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Thomas Goirand
On 01/04/2013 01:31 AM, Alexey Eromenko wrote:
 On Thu, Jan 3, 2013 at 7:25 PM, Thomas Goirand z...@debian.org wrote:
 on a 64 bits arch Debian, when really, you'd better just do:
 apt-get install iceweasel

 and use your newly installed browser in 64 bits mode...
 Not, because my job requires the latest FireFox (latest-and-greatest).

What you are looking for is:
http://mozilla.debian.net/

It has the latest. (or if doesn't, it will in a week or so,
Debian Developers behind this are very efficient)

 And the standard FireFox, which is 32-bits, should work.

You still didn't answer my question as to how you installed it,
so I can't tell.

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/50e5c5e2.9060...@debian.org



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Gergely Nagy
Alexey Eromenko al4...@gmail.com writes:

 User error? Huh ?

It is, I'm afraid.

 No ! This is a Debian Bug !

No, it is not.

 Debian clearly says: File does not exist, while in fact it DOES
 EXIST.

It does not. However, the file the message is referring to is not the
file you think it refers to: it is missing the 32-bit dynamic linker,
/lib32/ld-linux.so.2 (available in the package libc6-i386), not the
firefox binary itself.

The message is a bit confusing, indeed, but without a dynamic linker
present, it's hard to do any better.

 This is a 100% proof of Debian bug.

You installed a 32-bit application on a 64-bit system. That will only
work if you also install the 32-bit supporting libraries, including the
dynamic linker. This is not a bug in Debian.

And no, installing 32-bit libraries by default would be a bad idea, for
a multitude of reasons.

-- 
|8]


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87vcbei1w9.fsf@algernon.balabit



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Russ Allbery
Alexey Eromenko al4...@gmail.com writes:

 But having 32-bit LSB compliance will help people a _LOT_.

Debian provides LSB compliance via the lsb set of packages.  Not everyone
wants to have all LSB packages installed or particularly cares about LSB
compliance.  If you do:

aptitude install lsb

will install it for you.  This should also pull in 32-bit support on an
amd64 architecture.

-- 
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/871ue2ywpp@windlord.stanford.edu



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Aron Xu
On Fri, Jan 4, 2013 at 1:44 AM, Alexey Eromenko al4...@gmail.com wrote:
 But having 32-bit LSB compliance will help people a _LOT_.


This does not mean you can't run 32bit application under a 64bit
Debian installation, it's because the support is not added into
default installation as the feature isn't considered stable in the
Debian way. You can search for Multi-Arch for more details on this
topic. You will be able to run most of the 32bit applications by
installing the required 32bit libraries, and the error of File does
not exist means some/all of the required 32bit libraries do not
exist.  I agree it is not a user-friendly error message which can
cause misunderstanding, but that message should not be fixed by Debian
as Russ has given the details.


-- 
Regards,
Aron Xu


-- 
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/CAMr=8w7077GELw3Wn98Mw3RW=+ojab9h-ud+o5-qyl+gxdg...@mail.gmail.com



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Didier 'OdyX' Raboud
Le jeudi, 3 janvier 2013 18.44:59, Alexey Eromenko a écrit :
 But having 32-bit LSB compliance will help people a _LOT_.

By the way:
* Debian is not LSB-certified
* ... but the lsb-* packages try to provide a working implementation.

No work has been attempted to provide Multi-Arch lsb packages (besides lsb-
release and lsb-base being Architecture: foreign). Patches are welcome to make 
Wheezy+1 more suitable to your needs.

Cheers,

OdyX


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



Time to merge back ubuntu improvements!

2013-01-03 Thread alberto fuentes
Ubuntu has done some poor decisions but it has done some other that are
okay. We should consider merging some of them back.
Im thinking about the 6 months release thing. Without further ado, here's
the proposal pre-draft:

_Proposal_:
Add a new release stage between stable and testing. Called usable or
whatever name we find fit for it

stable - usable - testing - sid

Migrate packages after a period* in testing without RC bugs.
*a 2-4 weeks seems reasonable to me

_Motivation_:
I cant recommend anybody that wants a reasonable up-to-date desktop and is
technically-impaired to use debian because occasionally, it breaks badly. I
can not but to redirect them to ubuntu. This has to change

_Rationale_:
In current state, stable has packages that are too old.
Testing, as usable as usually is, occasionally breaks. It broke 3 times
more or less this year to me. These breakages render a poor desktop user
experience.

Usable would be more stable than testing (stable meaning less bugs)
Usable would be less stable than stable (stable meaning it changes)

_Current half-backed solutions to this problem_:
The only ways to prevent this if you are running the more or less
up-to-date testing are:
 * Pin packages with RC bugs on upgrade. This is:
- Non trivial: it makes you understand how bad the bug is and know how
the pinning system works
- Ineffective: its a matter of luck that the bug is found before you
upgrade the package. In the worst case scenario, the package entered
testing one second before you tried to upgrade and has not being broadly
tested yet to find those pesky RC bugs.
- Useless if you are trying to install a new package and the bug
already hit testing

 * Stable backports: This is okay, but its manually done. Somebody has to
be interested in the particular package and do it. One of the benefits of
usable is that is automatically generated. Requiring less hand-made man
labour in general. I guess It adds a little overhead for FTP masters.

Request for comments!


Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Alexey Eromenko
On Thu, Jan 3, 2013 at 8:05 PM, Didier 'OdyX' Raboud o...@debian.org wrote:

 release and lsb-base being Architecture: foreign). Patches are welcome to make
 Wheezy+1 more suitable to your needs.

How about changing it from a kernel bug to tasksel feature ?

I recommend: tasksel to install 32-bit libraries by default, if user
chooses stock Desktop (KDE/GNOME/XFCE/...). This should solve the
problem for most users.

-- 
-Alexey Eromenko Technologov


-- 
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/CAOJ6w=eo5bh4gncnzdn26ksgrmy1uwkxasjkwxbnh6dxu8p...@mail.gmail.com



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Timo Weingärtner
clone 697270 -1
retitle -1 misleading error message when ELF interpreter does not exist
reassign -1 bash
severity -1 normal
merge -1 609882
retitle 697270 i386 multiarch not enabled and ia32-libs not installed by 
default on amd64
severity 697270 minor
tags 697270 +wontfix
thanks

Hi Alexey,

2013-01-03 um 18:32:28 schrieb Russ Allbery:
 Alexey Eromenko al4...@gmail.com writes:
  User error? Huh ?
  
  No ! This is a Debian Bug !
  Debian clearly says: File does not exist, while in fact it DOES EXIST.
  This is a 100% proof of Debian bug.

I guess it is bash telling you that.

 That's the error message that you get when the dynamic loader for a binary
 doesn't exist.  I think that's been the case for as long as Linux has
 existed.

That's already reported as bug #609882.

For the second part: most people won't need i386 libs on a amd64 system, so
this is obviously a wontfix. You can still install ia32-libs if you need them
and follow the instructions for enabling multiarch for i386.


Greetings
Timo


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


Processed (with 1 errors): Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 clone 697270 -1
Bug #697270 {Done: Holger Levsen hol...@layer-acht.org} [general] PC 32-bit 
programs fails to work on amd64
Bug 697270 cloned as bug 697299
 retitle -1 misleading error message when ELF interpreter does not exist
Bug #697299 {Done: Holger Levsen hol...@layer-acht.org} [general] PC 32-bit 
programs fails to work on amd64
Changed Bug title to 'misleading error message when ELF interpreter does not 
exist' from 'PC 32-bit programs fails to work on amd64'
 reassign -1 bash
Bug #697299 {Done: Holger Levsen hol...@layer-acht.org} [general] misleading 
error message when ELF interpreter does not exist
Bug reassigned from package 'general' to 'bash'.
Ignoring request to alter found versions of bug #697299 to the same values 
previously set
Ignoring request to alter fixed versions of bug #697299 to the same values 
previously set
 severity -1 normal
Bug #697299 {Done: Holger Levsen hol...@layer-acht.org} [bash] misleading 
error message when ELF interpreter does not exist
Severity set to 'normal' from 'serious'
 merge -1 609882
Bug #697299 {Done: Holger Levsen hol...@layer-acht.org} [bash] misleading 
error message when ELF interpreter does not exist
Unable to merge bugs because:
done of #609882 is '' not 'Holger Levsen hol...@layer-acht.org'
Failed to merge 697299: Did not alter merged bugs
Debbugs::Control::set_merged('transcript', 'GLOB(0x24aac70)', 
'requester', 'Timo Weingärtner t...@tiwe.de', 'request_addr', 
'cont...@bugs.debian.org', 'request_msgid', 
'201301031919.39522.t...@tiwe.de', 'request_subject', ...) called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 538
eval {...} called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 537
Debbugs::Control::Service::control_line('line', 'merge -1 609882', 
'clonebugs', 'HASH(0x241c160)', 'limit', 'HASH(0x241bb48)', 
'common_control_options', 'ARRAY(0x241bb90)', 'errors', ...) called at 
/usr/lib/debbugs/service line 474

 retitle 697270 i386 multiarch not enabled and ia32-libs not installed by 
 default on amd64
Bug #697270 {Done: Holger Levsen hol...@layer-acht.org} [general] PC 32-bit 
programs fails to work on amd64
Changed Bug title to 'i386 multiarch not enabled and ia32-libs not installed by 
default on amd64' from 'PC 32-bit programs fails to work on amd64'
 severity 697270 minor
Bug #697270 {Done: Holger Levsen hol...@layer-acht.org} [general] i386 
multiarch not enabled and ia32-libs not installed by default on amd64
Severity set to 'minor' from 'serious'
 tags 697270 +wontfix
Bug #697270 {Done: Holger Levsen hol...@layer-acht.org} [general] i386 
multiarch not enabled and ia32-libs not installed by default on amd64
Added tag(s) wontfix.
 thanks
Stopping processing here.

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


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13572371892908.transcr...@bugs.debian.org



Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Russ Allbery
Timo Weingärtner t...@tiwe.de writes:
 2013-01-03 um 18:32:28 schrieb Russ Allbery:
 Alexey Eromenko al4...@gmail.com writes:

 User error? Huh ?

 No ! This is a Debian Bug !
 Debian clearly says: File does not exist, while in fact it DOES EXIST.
 This is a 100% proof of Debian bug.

 I guess it is bash telling you that.

 That's the error message that you get when the dynamic loader for a
 binary doesn't exist.  I think that's been the case for as long as
 Linux has existed.

 That's already reported as bug #609882.

I think that's asking quite a lot of bash.  Wouldn't it have to open the
binary and parse the ELF headers, extracting the INTERP header, in order
to verify that?  Does it really make sense to encode understanding of ELF
binary layout formats in bash?

-- 
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/87obh6xgux@windlord.stanford.edu



Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Timo Weingärtner
Hallo Russ Allbery,

2013-01-03 um 19:26:46 schriebst Du:
 Timo Weingärtner t...@tiwe.de writes:
  2013-01-03 um 18:32:28 schrieb Russ Allbery:
  Alexey Eromenko al4...@gmail.com writes:
  User error? Huh ?
  
  No ! This is a Debian Bug !
  Debian clearly says: File does not exist, while in fact it DOES
  EXIST. This is a 100% proof of Debian bug.
  
  I guess it is bash telling you that.
  
  That's the error message that you get when the dynamic loader for a
  binary doesn't exist.  I think that's been the case for as long as
  Linux has existed.
  
  That's already reported as bug #609882.
 
 I think that's asking quite a lot of bash.  Wouldn't it have to open the
 binary and parse the ELF headers, extracting the INTERP header, in order
 to verify that?  Does it really make sense to encode understanding of ELF
 binary layout formats in bash?

As seen in strace bash already checks for existance of the script and the 
#!interpreter. So when execve threw a ENOENT (The file filename or a script 
or ELF interpreter does not exist, or a shared library needed for file or 
interpreter cannot be found.) it could at least say something like 
interpreter or libs not found, try ldd for debugging.


Grüße
Timo


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


Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Russ Allbery
Timo Weingärtner t...@tiwe.de writes:
 Hallo Russ Allbery,

 I think that's asking quite a lot of bash.  Wouldn't it have to open
 the binary and parse the ELF headers, extracting the INTERP header, in
 order to verify that?  Does it really make sense to encode
 understanding of ELF binary layout formats in bash?

 As seen in strace bash already checks for existance of the script and
 the #!interpreter. So when execve threw a ENOENT (The file filename or
 a script or ELF interpreter does not exist, or a shared library needed
 for file or interpreter cannot be found.) it could at least say
 something like interpreter or libs not found, try ldd for debugging.

Hm, yes, I suppose that's true.  There's a race condition when the binary
is deleted between the ENOENT failure and the subsequent check, but
apparently bash is already living with that for the shell script check.
Okay, good point.

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


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



Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Steve Langasek
On Thu, Jan 03, 2013 at 10:26:46AM -0800, Russ Allbery wrote:
  That's the error message that you get when the dynamic loader for a
  binary doesn't exist.  I think that's been the case for as long as
  Linux has existed.

  That's already reported as bug #609882.

 I think that's asking quite a lot of bash.  Wouldn't it have to open the
 binary and parse the ELF headers, extracting the INTERP header, in order
 to verify that?  Does it really make sense to encode understanding of ELF
 binary layout formats in bash?

No, it doesn't.  Especially when binfmt_misc means you can get this error
from an arbitrary number of file formats with arbitrary levels of
interpreter nesting.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org


signature.asc
Description: Digital signature


Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Ben Armstrong
On 01/03/2013 02:16 PM, Alexey Eromenko wrote:
 On Thu, Jan 3, 2013 at 8:05 PM, Didier 'OdyX' Raboud o...@debian.org wrote:

 release and lsb-base being Architecture: foreign). Patches are welcome to 
 make
 Wheezy+1 more suitable to your needs.
 
 How about changing it from a kernel bug to tasksel feature ?
 
 I recommend: tasksel to install 32-bit libraries by default, if user
 chooses stock Desktop (KDE/GNOME/XFCE/...). This should solve the
 problem for most users.

See
http://www.debian.org/releases/stable/amd64/apbs04.html.en#preseed-pkgsel for
selection of individual packages at install time by preseeding. Sounds
like maybe it is a fit for your needs.

Ben


-- 
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/50e5d3b2.5030...@sanctuary.nslug.ns.ca



Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Ben Hutchings
On Fri, Jan 04, 2013 at 02:01:26AM +0800, Aron Xu wrote:
 On Fri, Jan 4, 2013 at 1:44 AM, Alexey Eromenko al4...@gmail.com wrote:
  But having 32-bit LSB compliance will help people a _LOT_.
 
 
 This does not mean you can't run 32bit application under a 64bit
 Debian installation, it's because the support is not added into
 default installation as the feature isn't considered stable in the
 Debian way. 
[...]

In squeeze one could just run:

apt-get install ia32-libs-gtk

and most third-party i386 binaries would work.  But in wheezy one must
first run:

dpkg --add-architecture i386
apt-get update

The installer doesn't AFAIK provide even the option to do this.  (The
i386/amd64 installer images might at least be usable as multiarch APT
sources though.)  So this is a usability regression in wheezy.

Further, since the ia32-libs-* metapackages are transitional, this is
due to become even more difficult in jessie.  I think it's a mistake
to remove well-known and useful metapackages, and they should be
retained.  However they should probably be moved into tasksel once the
installer is multiarch-aware.

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130103185949.gt13...@decadent.org.uk



Re: Time to merge back ubuntu improvements!

2013-01-03 Thread Carlos Alberto Lopez Perez
On 03/01/13 19:18, alberto fuentes wrote:
 Request for comments!

AFAIK there is already an ongoing effort to provide an usable updated
rolling release of Debian.

http://joeyh.name/code/debian/cut/

http://cut.debian.net/


Isn't this (more or less) what you are asking for?



signature.asc
Description: OpenPGP digital signature


Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Henrique de Moraes Holschuh
On Thu, 03 Jan 2013, Alexey Eromenko wrote:
 On Thu, Jan 3, 2013 at 8:05 PM, Didier 'OdyX' Raboud o...@debian.org wrote:
 
  release and lsb-base being Architecture: foreign). Patches are welcome to 
  make
  Wheezy+1 more suitable to your needs.
 
 How about changing it from a kernel bug to tasksel feature ?
 
 I recommend: tasksel to install 32-bit libraries by default, if user
 chooses stock Desktop (KDE/GNOME/XFCE/...). This should solve the
 problem for most users.

This is actually a very good idea.  Automatically generate the library
subset of a task, teach tasksel to add the required arch tags, and make it
as easy as a checkbox or a command line option to add most of the libraries
you might ever need for a secondary arch.  This could go a long way to make
it less painful (if a _lot_ more wasteful of inodes and disk space) to deal
with 32-bit non-debian applications.

That said, for now, it is best to learn how to use the ldd utility to root
out missing libraries for any binary.  It *really* helps.

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


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



Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Andrey Rahmatullin
On Thu, Jan 03, 2013 at 10:26:46AM -0800, Russ Allbery wrote:
  Debian clearly says: File does not exist, while in fact it DOES EXIST.
  This is a 100% proof of Debian bug.
 
  I guess it is bash telling you that.
 
  That's the error message that you get when the dynamic loader for a
  binary doesn't exist.  I think that's been the case for as long as
  Linux has existed.
 
  That's already reported as bug #609882.
 
 I think that's asking quite a lot of bash.  Wouldn't it have to open the
 binary and parse the ELF headers, extracting the INTERP header, in order
 to verify that?  Does it really make sense to encode understanding of ELF
 binary layout formats in bash?
This was discussed on Dec 26 on #-devel, a Fedora patch
(http://pkgs.fedoraproject.org/cgit/bash.git/tree/bash-2.05a-interpreter.patch)
was mentioned. Yes, it parses ELF headers.

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Bug#697311: ITP: libandroid-json-org-java -- cleanroom reimplementation of crockfords evil json.org java library

2013-01-03 Thread Thomas Koch
Package: wnpp
Severity: wishlist
Owner: Thomas Koch tho...@koch.ro
Control: block 697193 by 622928

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

* Package name: libandroid-json-org-java
  Version : 20090211 (to mimick the last json.org version)
  Upstream Author : The Android Open Source Project
* URL : 
https://android.googlesource.com/platform/libcore/+/master/json
* License : Apache 2.0
  Programming Lang: Java
  Description : cleanroom reimplementation of crockfords evil json.org java 
library

Json.org is a popular java library to parse and create json string from the
author of the json standard Douglas Crockford. His implementation however is
not free software[1].

[1] http://wiki.debian.org/qa.debian.org/jsonevil

Therefor the Android team did a cleanroom reimplementation of a json library
to be used inplace of the original one.

- ---

I did a git subtree split of the android libcore git repo which contains only
the json code: https://github.com/thkoch2001/android-json-org

Thomas Koch

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

iQIcBAEBCAAGBQJQ5el+AAoJEAf8SJEEK6Za7ggP/is5XBgDCmh1gQREMICZjixi
NcBKxb3Ua4URtkLHcjk6ufH3dWx03quWmDR4nOEVohxbTp469PGcSuLA//jVB1w0
TpPsxnjERLMRr+/+Fsi+SQ9ekeR1EzTErXeIqCeYaejHK5LKLZy4h5/CMxx4wKQk
dnyWXbzwQfQ9WiMauHMMITDR7ppKLo6uHOIvKK634TBmRboU626VCVmbYHvzRY3L
jLFYFZFBhtGMetLWnpU+c7yMX9tQl5Omr4Q3SCruSRghaOituXsOUMnQfsox9lD+
D8gykaf2eBSdGiknYY0IDw2V3izcshRnphvvlbaceQdNxN/9Y/85rIqzoSyexit0
zWfedVhGPfquR90+RNH36eDNoYFWzh1VE0wxiR+4b4B+CqZDQj7sUsO4gW7zJxun
NTTRNopYbai3N6TgwlVBoSP2PHf0kJpvX9NkezAFKwCMZpFbvIKmbrO0+J4x+c6l
mXcpns3KByXn/pBaBkHEy1T8pOx3DgInm7o8O7PNugiOCwl3P9KoTLalrXxYb48o
0KP3lF5+6MGzdRK5yYxKJi6YANzDKv1vxROUmR3eFEyQHNq1c+JUXSiNmI4eWaQ7
Ab25OnRK6b8Q9vpKPbI759+esAXfQNOfU2KuENwd9A9YabzKwEf6yzgp2nS4Oq/d
umZNdyFI7qkPuZjiRacn
=iJSN
-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/20130103202642.29360.61354.reportbug@x121e



Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Adam Borowski
On Thu, Jan 03, 2013 at 06:59:02PM +0100, Gergely Nagy wrote:
 You installed a 32-bit application on a 64-bit system. That will only
 work if you also install the 32-bit supporting libraries, including the
 dynamic linker. This is not a bug in Debian.
 
 And no, installing 32-bit libraries by default would be a bad idea, for
 a multitude of reasons.

Starting with the question: WHICH 32-bit?

Does the user mean a modern 32-bit x86 ABI?  If so, x32 is over there.
Does the user mean the most widespread 32-bit CPU type?  Then qemu-user-arm.

Unless you want to resolve the question by installing libraries for every
single architecture by default.

An then, WHICH libraries?  Although here at least LSB help, even though
what it mandates is ancient.

-- 
How to squander your resources: those silly Swedes have a sauce named
hovmästarsås, the best thing ever to put on cheese, yet they waste it
solely on mere salmon.


-- 
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/20130103213543.ga32...@angband.pl



Re: Time to merge back ubuntu improvements!

2013-01-03 Thread gregor herrmann
On Thu, 03 Jan 2013 19:18:27 +0100, alberto fuentes wrote:

 The only ways to prevent this if you are running the more or less
 up-to-date testing are:
  * Pin packages with RC bugs on upgrade. This is:
 - Non trivial: it makes you understand how bad the bug is and know how
 the pinning system works

No and yes.

No, because apt-listbugs exists and provides a nice interface so users
don't have to care about pinning details for themselves.

Yes, because from my very practical experience users are often
confused when apt-listbugs presents them a bug subject.

 - Ineffective: its a matter of luck that the bug is found before you
 upgrade the package. In the worst case scenario, the package entered
 testing one second before you tried to upgrade and has not being broadly
 tested yet to find those pesky RC bugs.

Pesky RC bugs are usually reported within few hours after they enter
unstable, no danger for testing here.

 - Useless if you are trying to install a new package and the bug
 already hit testing

Use apt-listbugs.
 

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Lenny Kravitz: Again


signature.asc
Description: Digital signature


Re: Time to merge back ubuntu improvements!

2013-01-03 Thread Andrey Rahmatullin
On Thu, Jan 03, 2013 at 11:45:45PM +0100, gregor herrmann wrote:
   * Pin packages with RC bugs on upgrade. This is:
  - Non trivial: it makes you understand how bad the bug is and know how
  the pinning system works
 
 No and yes.
 
 No, because apt-listbugs exists and provides a nice interface so users
 don't have to care about pinning details for themselves.
Can apt-listbugs do anything more than abort the entire transaction?


-- 
WBR, wRAR


signature.asc
Description: Digital signature


Bug#697326: ITP: fonts-opendyslexia -- font designed to increase readability for readers with dyslexia

2013-01-03 Thread Tanguy Ortolo
Package: wnpp
Severity: wishlist
Owner: Tanguy Ortolo tanguy+deb...@ortolo.eu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

* Package name: fonts-opendyslexic
  Version : 20121109
  Upstream Author : Abbie Gonzalez ab...@abbiecod.es
* URL : http://dyslexicfonts.com/
* License : CC-BY-3.0
  Description : font designed to increase readability for readers with 
dyslexia

OpenDyslexic is an open sourced font created to increase readability for
readers with dyslexia. The typeface includes regular, bold, italic, and
bold-italic styles. It is being updated continually and improved based on input
from dyslexic users.

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

iQIcBAEBCgAGBQJQ5hL2AAoJEOryzVHFAGgZLqYQAI2USxOO41aQ/57ETI2APeAn
BPxIeGRnqtl/SvcmeVF5bj0kGbds7uxwqlvvSdG9gav2LpiVCmH1ve30cMouQ1Td
KTsQcjctdJ2qqpTQOJ2LXzjGocT+lIyA+dQsQyGoET5Qc+Y1HO6u8VCU8noT6x6E
VQmpf+n9qmOfk36EkpMF7WM5kTedTV34szDz5fjMcfe5PaxWVLTfeK6PL1Bt+nHO
yVQRqmbbxLZEWysCt47l1hNFsV2ikmNOfZldNQqJf73TASeUya2kB95bfDlhSb6c
1Z+Elm8/vmO8PSrBqKk9Z37o7RQPD9rrT7GVsVJDLJC404w8R6Ga3rS0beVYsw4J
Ci0j4HQDuxqf6+Rw4MElZO+TkGOI9kp4kdesrvCPZDf3b7pekdZn/nFSyvUNqOHX
mYC734rD4New2WqyS9x7HGW86dxEGOAZezaBsbD/xy8UhRlv7/Rqx9RlgSM7vnAp
IgkGz6HRXeGMh30kRkeplGGRimqqNl3GxJFzgssXhyLbmZV/rbWOPzAmJUSRAubi
NLDLfrFQsxKjP4yguc78DyNJXnYROJ9HYDIxcApls2rMroP66/ra7coBUMA2IDP6
7B9Zk0vBgASl+TusMyTIbNNfPFq892XSrCF9PC2SEBJbhyzFKsVLZFib4T7r9zdo
jjzhzC63gN4SnLJcthiS
=ImVz
-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/20130103232337.29852.50161.report...@clarke.ortolo.eu



Re: Time to merge back ubuntu improvements!

2013-01-03 Thread gregor herrmann
On Fri, 04 Jan 2013 05:12:03 +0600, Andrey Rahmatullin wrote:

* Pin packages with RC bugs on upgrade. This is:
   - Non trivial: it makes you understand how bad the bug is and know how
   the pinning system works
  No, because apt-listbugs exists and provides a nice interface so users
  don't have to care about pinning details for themselves.
 Can apt-listbugs do anything more than abort the entire transaction?

Yes, it sets up the pinning in /eta/apt/preferences and has a cronjob
to remove the pinnings once an RC bug is closed.

So immediately it aborts the installation run (which is a bit
annoying) but that's only the first time you decide to not install
$package because of $bug. After that you just won't see
$package/$version until the $bug is fixed.

Cheers,
gregor
 
-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Rolling Stones: Imagination78


signature.asc
Description: Digital signature


Work-needing packages report for Jan 4, 2013

2013-01-03 Thread wnpp
The following is a listing of packages for which help has been requested
through the WNPP (Work-Needing and Prospective Packages) system in the
last week.

Total number of orphaned packages: 519 (new: 1)
Total number of packages offered up for adoption: 141 (new: 1)
Total number of packages requested help for: 63 (new: 0)

Please refer to http://www.debian.org/devel/wnpp/ for more information.



The following packages have been orphaned:

   cdrdao (#697287), orphaned today
 Description: records CDs in Disk-At-Once (DAO) mode
 Installations reported by Popcon: 59751

518 older packages have been omitted from this listing, see
http://www.debian.org/devel/wnpp/orphaned for a complete list.



The following packages have been given up for adoption:

   pconsole (#696888), offered 6 days ago
 Description: parallel console shell for administering clusters
 Installations reported by Popcon: 65

140 older packages have been omitted from this listing, see
http://www.debian.org/devel/wnpp/rfa_bypackage for a complete list.



For the following packages help is requested:

   apt-xapian-index (#567955), requested 1067 days ago
 Description: maintenance tools for a Xapian index of Debian packages
 Installations reported by Popcon: 59573

   asymptote (#517342), requested 1406 days ago
 Description: script-based vector graphics language inspired by
   MetaPost
 Installations reported by Popcon: 3902

   athcool (#278442), requested 2991 days ago
 Description: Enable powersaving mode for Athlon/Duron processors
 Installations reported by Popcon: 71

   balsa (#642906), requested 466 days ago
 Description: An e-mail client for GNOME
 Installations reported by Popcon: 782

   bastille (#592137), requested 880 days ago
 Description: Security hardening tool
 Installations reported by Popcon: 189

   cardstories (#624100), requested 619 days ago
 Description: Find out a card using a sentence made up by another
   player
 Installations reported by Popcon: 9

   chromium-browser (#583826), requested 949 days ago
 Description: Chromium browser
 Installations reported by Popcon: 11410

   cloud-init (#693094), requested 52 days ago
 Description: configuration and customization of cloud instances
 Installations reported by Popcon: 7

   debtags (#567954), requested 1067 days ago
 Description: Enables support for package tags
 Installations reported by Popcon: 2465

   doc-central (#566364), requested 1076 days ago
 Description: web-based documentation browser
 Installations reported by Popcon: 204

   fbcat (#565156), requested 1086 days ago
 Description: framebuffer grabber
 Installations reported by Popcon: 146

   flightgear (#487388), requested 1657 days ago
 Description: Flight Gear Flight Simulator
 Installations reported by Popcon: 810

   freeipmi (#628062), requested 588 days ago
 Description: GNU implementation of the IPMI protocol
 Installations reported by Popcon: 2073

   gnat-4.4 (#539633), requested 1724 days ago
 Description: backport bug fixes from trunk (GCC 4.5)
 Installations reported by Popcon: 2111

   gnat-gps (#496905), requested 1589 days ago
 Description: co-maintainer needed
 Installations reported by Popcon: 453

   gnokii (#677750), requested 201 days ago
 Description: Datasuite for mobile phone management
 Installations reported by Popcon: 2251

   gnupg (#660685), requested 318 days ago
 Description: GNU privacy guard - a free PGP replacement
 Installations reported by Popcon: 129305

   golang (#668870), requested 263 days ago
 Description: Go programming language compiler - metapackage
 Installations reported by Popcon: 431

   gpa (#663405), requested 299 days ago
 Description: GNU Privacy Assistant (GPA)
 Installations reported by Popcon: 501

   gradle (#683666), requested 154 days ago
 Description: Groovy based build system
 Installations reported by Popcon: 23

   grub2 (#248397), requested 3160 days ago
 Description: GRand Unified Bootloader
 Installations reported by Popcon: 120561

   hfsprogs (#557892), requested 1135 days ago
 Description: mkfs and fsck for HFS and HFS+ file systems
 Installations reported by Popcon: 1278

   horde4 (#686007), requested 129 days ago
 Description: web-based groupware and other applications

   hotkey-setup (#483107), requested 1682 days ago
 Description: auto-configures laptop hotkeys
 Installations reported by Popcon: 2982

   irssi-scripts (#663577), requested 297 days ago
 Description: collection of scripts for irssi
 Installations reported by Popcon: 1158

   isdnutils (#661110), requested 314 days ago
 Description: 

Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Ben Hutchings
On Thu, Jan 03, 2013 at 10:35:43PM +0100, Adam Borowski wrote:
 On Thu, Jan 03, 2013 at 06:59:02PM +0100, Gergely Nagy wrote:
  You installed a 32-bit application on a 64-bit system. That will only
  work if you also install the 32-bit supporting libraries, including the
  dynamic linker. This is not a bug in Debian.
  
  And no, installing 32-bit libraries by default would be a bad idea, for
  a multitude of reasons.
 
 Starting with the question: WHICH 32-bit?

 Does the user mean a modern 32-bit x86 ABI?  If so, x32 is over there.
 Does the user mean the most widespread 32-bit CPU type?  Then qemu-user-arm.

 Unless you want to resolve the question by installing libraries for every
 single architecture by default.
 
 An then, WHICH libraries?  Although here at least LSB help, even though
 what it mandates is ancient.

The problem to be solved is that ISVs provide binaries for Linux i386
and our users want to run them on amd64.  LSB, x32 and ARM are
completely irrelevant - the important thing is to make it easy to
install whatever libraries those ISVs depend on.

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130104004356.gu13...@decadent.org.uk



Re: Bug#697270: PC 32-bit programs fails to work on amd64

2013-01-03 Thread Andrey Rahmatullin
On Fri, Jan 04, 2013 at 12:43:56AM +, Ben Hutchings wrote:
 The problem to be solved is that ISVs provide binaries for Linux i386
 and our users want to run them on amd64.  LSB, x32 and ARM are
 completely irrelevant - the important thing is to make it easy to
 install whatever libraries those ISVs depend on.
So there are 2 subtasks here:
- for i386.deb packages (that have all their deps multiarchified) the user
  needs only to enable M-A on their system (but that's still non-trivial);
- for other binaries the user will need to find out and install deps
  manually, while on an i386 system they are usually already installed and
  on amd64 queeze they were installed because of ia32-libs (throwing all
  deps into one pile helps for certain problem classes).


-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: [RFC] Go (golang) packaging

2013-01-03 Thread Wouter Verhelst
On Thu, Jan 03, 2013 at 09:41:15AM +0100, Reinhard Tartler wrote:
 On Wed, Jan 2, 2013 at 10:26 PM, Wouter Verhelst wou...@debian.org wrote:
  On Wed, Jan 02, 2013 at 01:05:46PM +0100, Guillem Jover wrote:
  - Private dependencies, as they leak to rdeps. When a library uses
another library privately this dependency gets linked in directly
in all other rdeps, when that library stop depending on that
private dependency, all rdeps need to be rebuilt.
 
  Strictly speaking, if you're only using static libraries this is not
  really true; once you've compiled something against a static library,
  the static library might change in whatever way it sees fit, the
  compiled binary will continue to work, with or without recompilation.
 
 Consider this from the application perspective: Say an application
 links against a library libfoo.a. At some point, libfoo decides to
 include compression support, and requires functionality from libz.

Ah, yes, but you're talking about /adding/ a dependency. Guillem's
example was about removing one. There's a difference.

-- 
Copyshops should do vouchers. So that next time some bureaucracy requires you
to mail a form in triplicate, you can mail it just once, add a voucher, and
save on postage.


-- 
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/20130104010625.ge2...@grep.be



Re: Time to merge back ubuntu improvements!

2013-01-03 Thread Michael Goetze
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 01/03/2013 08:15 PM, Carlos Alberto Lopez Perez wrote:
 http://cut.debian.net/
 
 
 Isn't this (more or less) what you are asking for?

Isn't this (more or less) dead?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJQ5j91AAoJEACxOslp7LPuWMYP/Ryh5DJvC2Say+nFIMHmLAFy
iv9Ugg865BSB/WuHWPna3OsctlY/DS041Q95ifXH7tl1sAjbsKKlmDMiuvFqHiD8
9xeuXycRd8rq69REBTLW2vJMhyoH061pwAQU3FyHm7YC69pKHsZoNkV3TGToOQGb
muYk56Kt8cuGGkiXrhs/FWdteaMejnGDAjxFdKPxtKTireR9Ija60+kh+zFJWCWT
U3w311gTLAuvMFzarLhTWe3n/am7DPdo4CTU1qpcYI3pwnHQ0Ld04i2N1J4lCQi4
JqPqeQKohUd70qJv/Kl2qFcjJ4ThSa8tX9mV7/BKrqlZ5gIiXTJzjxDN7BSbEuxL
tDWZ4S/m+F8s3vHobjOHtiMggNAF0MhFERDVBcCqj13Gj8bXT0d7swiVwcy8HTJ9
PmfdD/jvZDYFp4xO88QxSQOvRH135oVI6nJYnt7VDFBlD4L+/bOBPOEgrb+jJhS6
2PmuWgAmiZ+nYQbpELItPO74Zl30clK3zd3YDShWXOTMBu14LMpiW4ZWVpjEwiGY
wwItu3EQ7FM+Bs3U8k619nNbBmhmCILIk+E9F4fDyjKAnvUb5uojYkOfZFt2K/iE
CQrsRLnqoO+cPV3j8hQTFhQ+QlmsFcYLpgSxTFp87mzLEfhPJlaRL7RZfphAftGj
yMXlxq1rk9r99bQBqYbX
=Q4tT
-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/50e63f75.1020...@mgoetze.net



Re: Time to merge back ubuntu improvements!

2013-01-03 Thread The Wanderer

On 01/03/2013 06:32 PM, gregor herrmann wrote:


On Fri, 04 Jan 2013 05:12:03 +0600, Andrey Rahmatullin wrote:


No, because apt-listbugs exists and provides a nice interface so users 
don't have to care about pinning details for themselves.


Can apt-listbugs do anything more than abort the entire transaction?


Yes, it sets up the pinning in /eta/apt/preferences and has a cronjob to
remove the pinnings once an RC bug is closed.

So immediately it aborts the installation run (which is a bit annoying) but
that's only the first time you decide to not install $package because of
$bug. After that you just won't see $package/$version until the $bug is
fixed.


That doesn't seem to match my experience.

I most commonly encounter apt-listbugs bug lists via 'apt-get dist-upgrade'. If
I say no in response to the list of bugs, and then run 'apt-get dist-upgrade'
again, I see the same list of bugs. (I just did this again, and checked
/et/apt/preferences ; that file does not exist, and /etc/apt/preferences.d/ is
empty.)

I don't nearly as often encounter apt-listbugs bug lists via 'apt-get install
[packagename]', but I do seem to recall that in cases where I have done so,
saying no and re-running the same command likewise produced the same bug list;
at the very least, it didn't try to prevent me from installing the version which
had been listed as buggy. (Nor would I want it to, at least not without a way to
override the block just as conveniently as it was set up in the first place.)

So either I'm not understanding what you mean by this description, or what
you're describing doesn't seem to be happening on my system.

--
   The Wanderer

Warning: Simply because I argue an issue does not mean I agree with any
side of it.

Every time you let somebody set a limit they start moving it.
  - LiveJournal user antonia_tiger


--
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/50e65e49.5040...@fastmail.fm



Re: Time to merge back ubuntu improvements!

2013-01-03 Thread Reinhard Tartler
On Thu, Jan 3, 2013 at 7:18 PM, alberto fuentes paj...@gmail.com wrote:
 _Proposal_:
 Add a new release stage between stable and testing. Called usable or
 whatever name we find fit for it

 stable - usable - testing - sid

 Migrate packages after a period* in testing without RC bugs.
 *a 2-4 weeks seems reasonable to me

 _Rationale_:
 In current state, stable has packages that are too old.
 Testing, as usable as usually is, occasionally breaks. It broke 3 times more
 or less this year to me. These breakages render a poor desktop user
 experience.

Why did testing break for you? Why do you think that adding another
stage, in which packages migrate automatically after some time period,
will magically prevent that?

I'm convinced it will not. You can help here much more by improving
testing instead of making our release process much more complicated
than needed.

-- 
regards,
Reinhard


-- 
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/CAJ0cceaC2JNb9XFiEoJhY9+Wa+ZnKzSD2DBj7+x6X=jsduq...@mail.gmail.com



Accepted upower 0.9.19-1 (source amd64 all)

2013-01-03 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 10:38:45 +0100
Source: upower
Binary: upower upower-doc libupower-glib1 libupower-glib-dev 
gir1.2-upowerglib-1.0
Architecture: source amd64 all
Version: 0.9.19-1
Distribution: experimental
Urgency: low
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 gir1.2-upowerglib-1.0 - GObject introspection data for upower
 libupower-glib-dev - abstraction for power management - development files
 libupower-glib1 - abstraction for power management - shared library
 upower - abstraction for power management
 upower-doc - abstraction for power management - documentation
Changes: 
 upower (0.9.19-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 ef5a5c0b33299e58fe6a71991f5364393fb7476d 2647 upower_0.9.19-1.dsc
 29c53be726d381b73b385f37454367fae126fe86 411604 upower_0.9.19.orig.tar.xz
 5f17817ea76492fa82ae4303a05ca21fc0118cad 10520 upower_0.9.19-1.debian.tar.gz
 fe2b06e79aa2e4f3968d87ad84871316c938ae1c 107018 upower_0.9.19-1_amd64.deb
 67af2dc451c7195e375b33edcc721fa13f72c4a4 58880 upower-doc_0.9.19-1_all.deb
 cdb233218b6963871b2766f11dce3ef5252a2c1c 35070 
libupower-glib1_0.9.19-1_amd64.deb
 e520ca0cdbc35c076f14505a62b858b64319eb56 50976 
libupower-glib-dev_0.9.19-1_amd64.deb
 076e407fe6fa257f6c3ba8f4899cf8278e9440dc 13690 
gir1.2-upowerglib-1.0_0.9.19-1_amd64.deb
Checksums-Sha256: 
 ca5dab4b597be7bdb4f646d716d1a8870ffeb06b4081fc28ca7a8572fdc4b26f 2647 
upower_0.9.19-1.dsc
 54c7facb3049f3c1b6ff9510c46aa378f53a2eb606a3ce7be3f6b0a227547e14 411604 
upower_0.9.19.orig.tar.xz
 b31b3bec495700322a9950cca6e5f34f134f16b21ae03aaf13af567ca91bd03f 10520 
upower_0.9.19-1.debian.tar.gz
 a19d7708eb9f3f2d0479f0f7d1a432442f92cb0ee452977340b1cfe50899e8bb 107018 
upower_0.9.19-1_amd64.deb
 c59c7abf8d625a588e11ae01fd255887e31e70a360006f37c8ae2d931d8ee531 58880 
upower-doc_0.9.19-1_all.deb
 f304922b6e7595a1d84d6a799a114914bae294224d91a2f43e2ec24bf5272aa8 35070 
libupower-glib1_0.9.19-1_amd64.deb
 2c2c6f7e3f99f67f1b826381d2004fff750410c5d32581ca5fc4928ffb0045cf 50976 
libupower-glib-dev_0.9.19-1_amd64.deb
 637fffc57730b95475838d5c8a147dc32ca160195ce1a2d44bfea99e18529f66 13690 
gir1.2-upowerglib-1.0_0.9.19-1_amd64.deb
Files: 
 0c62d3f2509635222f812ef4276643f8 2647 admin optional upower_0.9.19-1.dsc
 f96955ff1a2e4f006937d6b5ea95afb8 411604 admin optional 
upower_0.9.19.orig.tar.xz
 a379a1dc84612d941d700cbf48bf2e04 10520 admin optional 
upower_0.9.19-1.debian.tar.gz
 b088b524078a4a52b2e10afbb0b20ca4 107018 admin optional 
upower_0.9.19-1_amd64.deb
 faa41448d0e3851ee4d5567ac6905650 58880 doc optional upower-doc_0.9.19-1_all.deb
 a75dd36ef3ccdee2f4b7faeb5a166ccb 35070 libs optional 
libupower-glib1_0.9.19-1_amd64.deb
 050cff4b8520c8009f1f72a79a1b100b 50976 libdevel optional 
libupower-glib-dev_0.9.19-1_amd64.deb
 4c7e52b753eae5c2b93618755ffef69e 13690 introspection optional 
gir1.2-upowerglib-1.0_0.9.19-1_amd64.deb

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

iQIcBAEBCAAGBQJQ5VJQAAoJEPmIJawmtHufBn8QAKNq+Iw4D9WYBk6HEoKC0uJT
RwVlBwBM7NBTFQNN2CMDeYK215hBeIa3aY61gwsdid/DG70b/DQ/hv9pFOEgpFTL
H7FhUFbiK9HHfZiXq/0TBCDUR2LkY2cO2iSf0rdAw3zaRsosrJk0zXhj3XzQn0V1
QC+jLCOF6t7fVbyOScJfvqL0yM5LimNvTylxqv4hNiQUSTE13SXGn7gAXUJgKagD
TBYwyRSx35E2OLTUKjRcev/HpiGOWkCyOoOQDp3M9bsEO9y+opBBTHdt0Z1Q9CaR
w6CqzfMdoI8fXkpP4iAuiSXsW6bbZ4ZbZaXGH5Wd2GzA70oqA0AGAq8ZheAp1nYw
upmPIoom4Cfq0DMThn9I68hAo4HxKjQOAuKgDmOxTxtyWLS13WgyIxsZCqXeisfh
/ZUBb9x2+M1AwwMa7sPyprtwVv8XmP8Y7NuUR8fnAMamBq7GAS+Ryh8xT7lP95GV
33mf0qIYFX37tdkM/sxc9NhLKR3Za8JPd0S5v18FKjI7Msyrq8gn9EGapgXHH4Sj
y/AWtq0coAQYq/sZYXqU2egyg+AuAzeoozPElTioRYba7URwnrC51hbjuRuSlwy4
3KbXoJFFQQ0u6ZB+EPSiYnWBtgNGF11VLqpK662TxNVAcS0mNps6lTqz2p3o7yr0
o6vh+e4XYqAm+kCKT7h8
=KmBs
-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/e1tqhor-0001dq...@franck.debian.org



Accepted picard-tools 1.82-1 (source all)

2013-01-03 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 10:46:26 +0100
Source: picard-tools
Binary: libsam-java picard-tools
Architecture: source all
Version: 1.82-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Olivier Sallou osal...@debian.org
Description: 
 libsam-java - Java library to manipulate SAM and BAM files
 picard-tools - Command line tools to manipulate SAM and BAM files
Changes: 
 picard-tools (1.82-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 279b5075a61aad055d511d92069425a389700a79 2164 picard-tools_1.82-1.dsc
 d94a3a032f450eed63bad941fd68f7e640f7588f 13213816 
picard-tools_1.82.orig.tar.bz2
 e1f23776cd4b562f3042a635a12c5e49bf5c6ea7 7932 picard-tools_1.82-1.debian.tar.gz
 994067384153056656c53352abafa511394de50f 208620 libsam-java_1.82-1_all.deb
 6f361ed8e7529e3fb5f137bf672591db9ff1d400 487440 picard-tools_1.82-1_all.deb
Checksums-Sha256: 
 c93dd69ce0834dcf47a8a00f7149c9e9e9b97fc9e380b50a64cecdbe923f5d9f 2164 
picard-tools_1.82-1.dsc
 3e4b9f0c7221b5ab9ca736f461f803e0b16ffc05dd2d48c2e44fd8839a98f8e5 13213816 
picard-tools_1.82.orig.tar.bz2
 8fdb37025c67dd1746e12e8fea10cc1fa503424b55945cc861dc557d548fa322 7932 
picard-tools_1.82-1.debian.tar.gz
 83af9db609d03d6aa17ba1e35ef65d43ec9bd12e1bd3b9e835a0c1583fb88302 208620 
libsam-java_1.82-1_all.deb
 d782d3dd6de5ec78ed2e3866fa42137e8f6de5ac6f767739784c344c63a0dece 487440 
picard-tools_1.82-1_all.deb
Files: 
 7e115deedca7cf8263d2f6142f9fd0fd 2164 science optional picard-tools_1.82-1.dsc
 600529b34f5fa9c62623618d1158434e 13213816 science optional 
picard-tools_1.82.orig.tar.bz2
 5b8854543ffce0a1e2f7fd0e58794a33 7932 science optional 
picard-tools_1.82-1.debian.tar.gz
 dd52a56875b5baedb068422bcd671b64 208620 java optional 
libsam-java_1.82-1_all.deb
 c5758ec2b93bd8633e018de2236e6d50 487440 science optional 
picard-tools_1.82-1_all.deb

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

iQIcBAEBCAAGBQJQ5VSWAAoJEHjcaNsybYQ4j84P/jV4slol+pk1+ueH5917Oclw
7RHXvb65BlRmFJY+Mtb9CC9s+FPAFq0SEqYpN5y9ALwEVen2Clm+qCZMm+IK9TyM
Skwa4XcUiEQWZxTgqCQOyaIEX/qQmx0qWjUbnQ26CAS0YPMjnEnZq2EDdvSHw0LU
T2GajOHl0t5m2wFj7Fg7MvAaTEw4TlBo3tbtcLGbkWv5XPDBELAsc/AjrfuPuCpf
p+lJFmQNTmfXMMkVazqGZJcfDLLHW8xC5BUCrfII6xCPl37U8Vo59HXgf27wDnAF
xx7yTQ3qzky1uNdXq+fDRZC141eMuL9kvtVfT5zaKqBmhLMvwmI+FuF+za4UXTvR
sFCEhte3vE1oCt/2jm1ELBkueyNaXw1rPCpG33XIdsVrlPVC9o8cqkrFxvCiXDyH
AOWDgjhTrwhAyxQs5Xl+IbLTvBOr/bt+58oVhK6GBpyXqsajUuIQxwid6IVAR+Hd
V6Tlhn11cy9Qw1lA5i7DTmmZsGNhz/1itTaMzdLJyt8bC2yUfQT9eqaLo8kp6YSW
JVHPHj+VQcYgkw0mJwYzxVCl0zSwc6XwsiANw1VAmQ45IqTboB1k3wY+lBD0eS9J
kOkpIWusqmsLJGG1hhn1f0O8Y7BzA+Hy60vUPk/hLxRyi+WWj8UF6QFLf46w4Cpe
vD5ffTtT9GeWSSILTY4e
=vmwZ
-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/e1tqhrm-00018i...@franck.debian.org



Accepted biojava3-live 3.0.5-2 (source all)

2013-01-03 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 11:08:51 +0100
Source: biojava3-live
Binary: libbiojava3.0-java libbiojava3-java libbiojava3-java-doc
Architecture: source all
Version: 3.0.5-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Olivier Sallou osal...@debian.org
Description: 
 libbiojava3-java - Java API to biological data and applications (default 
version)
 libbiojava3-java-doc - [Biology] Documentation for BioJava
 libbiojava3.0-java - Java API to biological data and applications (version 3)
Closes: 696947
Changes: 
 biojava3-live (3.0.5-2) unstable; urgency=low
 .
   * Remove tests needing network access (Closes: #696947)
Checksums-Sha1: 
 91cab4fd5d1c01e79b86903b5b137cd18fbeb570 2497 biojava3-live_3.0.5-2.dsc
 8d79ef0976359a3e8f58e20cdd011d28f28062d6 8484 
biojava3-live_3.0.5-2.debian.tar.gz
 614dec48dd872197ce1a537fa6a0d3c0769489c7 3492058 
libbiojava3.0-java_3.0.5-2_all.deb
 78232f54db220c34d1d1d8a8096ca15f74de07db 3094 libbiojava3-java_3.0.5-2_all.deb
 2a31fe4b5e7b11dbd30947b9521254a3b207f9bb 2081052 
libbiojava3-java-doc_3.0.5-2_all.deb
Checksums-Sha256: 
 bd240fd2de26e04b4973016ec598ed0fc6a2f8311c45cde21c5133b2178d64ad 2497 
biojava3-live_3.0.5-2.dsc
 405ce76c82ecc5f9db1fdc4585c6df6c6decbbd89cac48d06db4e333ab2de532 8484 
biojava3-live_3.0.5-2.debian.tar.gz
 3a2be0a0bac0c85203b2d97e099c127a49f9be900a559187c764bc3e5947e2cd 3492058 
libbiojava3.0-java_3.0.5-2_all.deb
 d7f2cebd4d7f2ad9fcd1791a6e434a9192b0a4192637c3bb9750f3992301d4a6 3094 
libbiojava3-java_3.0.5-2_all.deb
 d0efaa2f52c3e42ef7fa5ae114b08fe66bb5732180be5f92d2d9cd7a2d0d9c70 2081052 
libbiojava3-java-doc_3.0.5-2_all.deb
Files: 
 56a8b6ec5cefa2ba3a4115630d745de2 2497 java optional biojava3-live_3.0.5-2.dsc
 9d9d65c1ff193ebd15f837828ee7f797 8484 java optional 
biojava3-live_3.0.5-2.debian.tar.gz
 993d34ddbc0d3e01c1e02a0387c24c80 3492058 java optional 
libbiojava3.0-java_3.0.5-2_all.deb
 84f2c91c735f0c43ccbab4f53087277d 3094 java optional 
libbiojava3-java_3.0.5-2_all.deb
 ab95acd042fbfbe34ec78d2ca22ad562 2081052 doc optional 
libbiojava3-java-doc_3.0.5-2_all.deb

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

iQIcBAEBCAAGBQJQ5VvFAAoJEHjcaNsybYQ4jYAQAIfGiz5gbuOU+O5MureiCIBY
5wZoXu1lg8UELwoTwmIp3SAVIFZ6gF7Qcrh3y5u7+u1fF8t3MUpxGD8iUbgGE/Z/
VsvPxi1UEskhPywYBkjjqJSMJONIHO71R6SejpSRM1z2zvGaZlYJ/LLuaQY17EWz
JLr5ty3i6Q339c/YfmXrlp9Vp81MNBqkzT4G4lI3ULKbMkxsf6nHLvzhCz23o4+M
7VgOXrNvMGZYPuIL1VF0DSxZY2BueojeMWqfM7tHYUNTWFsKFrvCSupFeBkr1KI5
0SuEhd+l1tJLMLakaJN+LnKDxEPsoNJ+vDUZSU6OmGS5le7SyiXBmteVs7KUbzsI
pc+W7sMg/1xVLrDMxoTmk7UgQk95pcZDugkU2gvWO7gRASP2bSAR4wOVN493EPOE
BNALt2iSoPfW1ebsfdiEroWfVQizTrzazHKsaX0oMk3QM/JGo3y6KaiZi2CfjjXR
0EVIjwBvpDrsfZqiJZUx0OJ5BRHZt6elQdYkgBD21xKKTKIwu21RRn3nkM8w0Omy
kFtrKcHvZ/UY4johlQUrED7dYaUWzcWmNLOYiP2eoLBeMaomHUwKOKgvJ0cK0CtU
bFsUOSs6oxVg5MQWsULbtSmxAXy67WL50qMGSfyu/0c4sRp5yjDEz973IWIqQtif
/DUY9nCLPnsiijbVf2Or
=jyT7
-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/e1tqi6k-0006kc...@franck.debian.org



Accepted libchado-perl 1.23-1 (source all)

2013-01-03 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 11:24:54 +0100
Source: libchado-perl
Binary: libchado-perl chado-utils
Architecture: source all
Version: 1.23-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Olivier Sallou osal...@debian.org
Description: 
 chado-utils - tools to add/extract data from Chado
 libchado-perl - database schema and tools for genomic data
Changes: 
 libchado-perl (1.23-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 9b4d68fad509ead59e7f47dde18978b160924256 2532 libchado-perl_1.23-1.dsc
 9f36e27de4c0a2ae9675994136095471f6cffcda 2862073 libchado-perl_1.23.orig.tar.gz
 def12b683e434e42be6ebe03cf93a1559ec0bfcd 14688 
libchado-perl_1.23-1.debian.tar.gz
 e07f2b0a288b9bef87c5b5355a1bde376505abdb 4773312 libchado-perl_1.23-1_all.deb
 7d44459bc8c841945ad84420beed38fa9e1f3c62 149036 chado-utils_1.23-1_all.deb
Checksums-Sha256: 
 708b9cd1a2837438893df02f0edb1dfa12a471cb5a01fa7d3bcd567d807fd8d9 2532 
libchado-perl_1.23-1.dsc
 a00b8e4e36cbbb5d8f66bd0b9afad5a2a804b3b775d3376fb5017ea18fd77c62 2862073 
libchado-perl_1.23.orig.tar.gz
 3cc799dd1c2f18979f832e6fe239b1ddbee1f9678960ebeecd6d83f5d4691aef 14688 
libchado-perl_1.23-1.debian.tar.gz
 883965e0bcb9dd21c7a3b3a19f2f43922469ae21c96f92e62c541ec0b866b0e5 4773312 
libchado-perl_1.23-1_all.deb
 69907bf34e6433c49d218805e31da400c8be6734af0e654ba501a78322f8a116 149036 
chado-utils_1.23-1_all.deb
Files: 
 10095e034255af11dc401eca199b19c0 2532 perl optional libchado-perl_1.23-1.dsc
 d6e87192ab1e91b494e1070e78cf0135 2862073 perl optional 
libchado-perl_1.23.orig.tar.gz
 5304f398bf2e55e7e9afea44f5038df2 14688 perl optional 
libchado-perl_1.23-1.debian.tar.gz
 ed58bd28d9ce821103160b067cefdfc6 4773312 perl optional 
libchado-perl_1.23-1_all.deb
 0130caef7df2c8b9ab5fb988a3af07f5 149036 perl optional 
chado-utils_1.23-1_all.deb

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

iQIcBAEBCAAGBQJQ5V/DAAoJEHjcaNsybYQ4QG8QAIGD3fnd6G/XDU0cAdsg7uv6
K6i//jkQIlNWU3qgUmGpoI9P/HSs103uhIRy8zBzdIOVokcNZqhanZy8ujDMD4Z8
D0DbcICcG6Xi41rl1Zf2e8z9a1La0+CSmmds6etivaHS/1//W9FFIFQLJZQXNJGU
WRyYcFN3Uql5kk/IoJlFZPgopRmOrfoqMa5bdEIuf7lty+fYQgybg/nR8vgKWwyB
k6jl4J7MspNQRGYbk3Ab0exLJSdZqeObb+Ioi9UDV29NW6d4EyyZFFGTHWlSdIA2
9GCQ2EWCIz0iVZ6BMMxUba4aW2e8MfZskkRGObHfimA6IPZShmxDj/AJEd7aitcw
gPdAXr5SeTi403cWqHO55hnmJLqZ1iKh/mlsH+clj5MpS0evqes1rsSgt/poKOwv
3uRs7RnzDJxD52UZ1frHJREqIiN/1w2PhDHFl+Ll5rebOvSi8iy+8zL4xTML9JL5
UxfkFUY+BpnVfPzx1S85bllsqyzfH1aOaIiL4lFenMxzGTJWyuWQqsFq10Jf8ZCX
NSVGDTRx4HMB30eMDy+rMrU5p+GZbKzbY35A63LemAl8spk7P31ECeXQrxk4fcGF
FfNTfoTB53EzOsWZxuYgEoUbgJJzPgpbR8DaRyGdu0Y4PTIsGlR5WgytXENhahle
7QN9zdwYHo4LZANhpX/U
=kVUI
-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/e1tqikg-0002m5...@franck.debian.org



Accepted euca2ools 2.1.2-1~experimental1 (source all)

2013-01-03 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 19:52:10 +0900
Source: euca2ools
Binary: euca2ools
Architecture: source all
Version: 2.1.2-1~experimental1
Distribution: experimental
Urgency: low
Maintainer: Debian Eucalyptus Maintainers 
pkg-eucalyptus-maintain...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description: 
 euca2ools  - managing cloud instances for Eucalyptus
Changes: 
 euca2ools (2.1.2-1~experimental1) experimental; urgency=low
 .
   55eebb1 Merge with upstream tag '2.1.2'.
   0b53205 Added metadata about the upstream project.
   f62c1f9 Watch tag numbers on GitHub.
Checksums-Sha1: 
 82fd08d5e8204e514d324121231b2c182ff95646 2290 
euca2ools_2.1.2-1~experimental1.dsc
 d416dd04b42c2c3a4c70f79f3434514d20040e0f 95133 euca2ools_2.1.2.orig.tar.gz
 045ccd551009d33b9ff1d1f50759db8818569ed5 5689 
euca2ools_2.1.2-1~experimental1.debian.tar.gz
 0607badecff01a7283e36a2f138e61b612dc78d3 159704 
euca2ools_2.1.2-1~experimental1_all.deb
Checksums-Sha256: 
 3050a228528d2b70535d5d51dcdb283805fd58a6262bddb865f066a796687804 2290 
euca2ools_2.1.2-1~experimental1.dsc
 49a1d44be475dac0da7b0a542e39e9500cecdc83160fc17f7474a569b090197a 95133 
euca2ools_2.1.2.orig.tar.gz
 3aef2cc77258d642d4e1a10aa1a68281545d8304b977b751cc155604fec474df 5689 
euca2ools_2.1.2-1~experimental1.debian.tar.gz
 864fe3edff158b7c9d0b394a667abd87344053f1265e8746a4578d37ffb7b077 159704 
euca2ools_2.1.2-1~experimental1_all.deb
Files: 
 9bc31a20912a217203ca06b1c5253982 2290 utils optional 
euca2ools_2.1.2-1~experimental1.dsc
 9a517e7bed703652a2264048e5a98588 95133 utils optional 
euca2ools_2.1.2.orig.tar.gz
 d12036649fbf6228e3ce30cf81b48bc3 5689 utils optional 
euca2ools_2.1.2-1~experimental1.debian.tar.gz
 324438359ee433e0075965b501224304 159704 utils optional 
euca2ools_2.1.2-1~experimental1_all.deb

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

iQIcBAEBCAAGBQJQ5WSWAAoJEMW9bI8ildUCcvYP+gPp5E539RdySbAeVsELNeO4
G990e+SB/OurNw/YckMMUWss7j8YGeLa8ltZCvJn5UUbxaZeKMbpkpa6FJmhPR0F
3dbjxSE0w+fSelJfE93LLh97Sx1L7MF3sBFWKJ9V3Q/Otgd5PUXgFzThChusc4Oe
gEglXInzBwAj2/Q/NMmW7Tq3i33pfXIZsdG9ssXCWE5OcOkQnQRCWw+pzR3aDLmC
O2PtAKCT8ZmafQ2IoFItNOX7zTfQYPHqVoPDEIsNRVn9XBrY5xmCERx2kIfBD5g0
FnO2eGAnqzZ0hLw24bJnOfTGPY7ZqORQzVcIzh+DbKkPVIq1eTpg6RSAyoPET5fc
HqvGBN0q2QHmo0LpIQFTiNkfSKraAr2qB9hw7jXWjfw9unNqMRP4hy2STbVJhDBX
LlB7dULv/5rXZzclcfTIrz1X82DyyMXPp93tOnCtmuqQ2Hol6OnlnbDlc0Bj/CQ+
lEb0KT1RkOVLxVMrNu7e01cTRmQyXAb5gBqkFvD/w8VdVrXCckdGhR6IpyqJFN2c
LiQIye2/cRIC2KXc2VL5GKEWN8sTXCiqQk3BWeNf9xt0FCErc51LFlz/3LfexoY5
Cm8iWwU6Z0h373Vdl6jEKQ0QwRL/f3+1zMfLiFUSUnjzILHQVTgQU2l2n6JRO4ie
o+/Io91ax01WyINDKtX0
=QRhl
-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/e1tqinh-0007zt...@franck.debian.org



Accepted grub2 2.00-10 (source i386)

2013-01-03 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 09:38:25 +
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub2-common grub-emu 
grub-emu-dbg grub-pc-bin grub-pc-dbg grub-pc grub-rescue-pc grub-coreboot-bin 
grub-coreboot-dbg grub-coreboot grub-efi-ia32-bin grub-efi-ia32-dbg 
grub-efi-ia32 grub-efi-amd64-bin grub-efi-amd64-dbg grub-efi-amd64 
grub-efi-ia64-bin grub-efi-ia64-dbg grub-efi-ia64 grub-ieee1275-bin 
grub-ieee1275-dbg grub-ieee1275 grub-firmware-qemu grub-yeeloong-bin 
grub-yeeloong-dbg grub-yeeloong grub-theme-starfield grub-mount-udeb
Architecture: source i386
Version: 2.00-10
Distribution: experimental
Urgency: low
Maintainer: GRUB Maintainers pkg-grub-de...@lists.alioth.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 grub-common - GRand Unified Bootloader (common files)
 grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
 grub-coreboot-bin - GRand Unified Bootloader, version 2 (Coreboot binaries)
 grub-coreboot-dbg - GRand Unified Bootloader, version 2 (Coreboot debug files)
 grub-efi   - GRand Unified Bootloader, version 2 (dummy package)
 grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
 grub-efi-amd64-bin - GRand Unified Bootloader, version 2 (EFI-AMD64 binaries)
 grub-efi-amd64-dbg - GRand Unified Bootloader, version 2 (EFI-AMD64 debug 
files)
 grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
 grub-efi-ia32-bin - GRand Unified Bootloader, version 2 (EFI-IA32 binaries)
 grub-efi-ia32-dbg - GRand Unified Bootloader, version 2 (EFI-IA32 debug files)
 grub-efi-ia64 - GRand Unified Bootloader, version 2 (IA64 version)
 grub-efi-ia64-bin - GRand Unified Bootloader, version 2 (IA64 binaries)
 grub-efi-ia64-dbg - GRand Unified Bootloader, version 2 (IA64 debug files)
 grub-emu   - GRand Unified Bootloader, version 2 (emulated version)
 grub-emu-dbg - GRand Unified Bootloader, version 2 (emulated debug files)
 grub-firmware-qemu - GRUB firmware image for QEMU
 grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
 grub-ieee1275-bin - GRand Unified Bootloader, version 2 (Open Firmware 
binaries)
 grub-ieee1275-dbg - GRand Unified Bootloader, version 2 (Open Firmware debug 
files)
 grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
 grub-mount-udeb - export GRUB filesystems using FUSE (udeb)
 grub-pc- GRand Unified Bootloader, version 2 (PC/BIOS version)
 grub-pc-bin - GRand Unified Bootloader, version 2 (PC/BIOS binaries)
 grub-pc-dbg - GRand Unified Bootloader, version 2 (PC/BIOS debug files)
 grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
 grub-theme-starfield - GRand Unified Bootloader, version 2 (starfield theme)
 grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
 grub-yeeloong-bin - GRand Unified Bootloader, version 2 (Yeeloong binaries)
 grub-yeeloong-dbg - GRand Unified Bootloader, version 2 (Yeeloong debug files)
 grub2  - GRand Unified Bootloader, version 2 (dummy package)
 grub2-common - GRand Unified Bootloader (common files for version 2)
Closes: 697183
Changes: 
 grub2 (2.00-10) experimental; urgency=low
 .
   * Support parallel builds.
   * Remove /boot/grub/unicode.pf2 on purge of grub-efi-{amd64,i386} (closes:
 #697183).
   * Build with GCC 4.7.
   * Merge from Ubuntu:
 - Don't permit loading modules on UEFI Secure Boot (since in such a
   setup the GRUB core image must be signed but it has no provision for
   verifying module signatures).
 - Read /etc/default/grub.d/*.cfg after /etc/default/grub (LP: #901600).
 - Blacklist 1440x900x32 from VBE preferred mode handling until a better
   solution is available (LP: #70).
Checksums-Sha1: 
 cb174abf9bd76304419668ecbf095c21294428fd 4396 grub2_2.00-10.dsc
 2dca2f09705125e2cdc3c363b9e22e131e032183 339647 grub2_2.00-10.debian.tar.gz
 43b1bcadcf54c64e689cd033b3146da976aa200d 2508 grub2_2.00-10_i386.deb
 6752525e026003861fdc44a905a74ecd80e1e302 1088 grub-linuxbios_2.00-10_i386.deb
 a1b4e3c548938163d9bcff280aaa5693691c4d7f 1098 grub-efi_2.00-10_i386.deb
 a1ddbf3513cd7ee7198954fce24c10a16b425d44 2043986 grub-common_2.00-10_i386.deb
 33a39dfe735d44613855b237f507337d42a98a1c 115018 grub2-common_2.00-10_i386.deb
 bdab60c0fe44acf4b6f3e15dacd9877b5c299780 2307554 grub-emu_2.00-10_i386.deb
 76d15bcda28e05fa69eda453463976c69ca178db 1769982 grub-emu-dbg_2.00-10_i386.deb
 ab469a8ab4ecef331f7dac0344c4499f27ad52b5 800120 grub-pc-bin_2.00-10_i386.deb
 357d60e6e92f126e11754b134c5140f75b7d9c9e 2311612 grub-pc-dbg_2.00-10_i386.deb
 38f3081cddf721836aceea065b79f3617ec2ff1d 168416 grub-pc_2.00-10_i386.deb
 3c0208b478a91aa6b623f05ea6b7451e5ca6c5fd 1002716 
grub-rescue-pc_2.00-10_i386.deb
 f67262f70bfd2a38f251c49d587a0604324d890a 521834 
grub-coreboot-bin_2.00-10_i386.deb
 b2df1da46dc860031921b65e897f18c675cb1679 2180024 
grub-coreboot-dbg_2.00-10_i386.deb
 

Accepted flashgot 1.5.2+dfsg-1 (source all)

2013-01-03 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 12:26:06 +0100
Source: flashgot
Binary: xul-ext-flashgot
Architecture: source all
Version: 1.5.2+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 xul-ext-flashgot - Extension to handle downloads with external download 
managers
Changes: 
 flashgot (1.5.2+dfsg-1) unstable; urgency=low
 .
   * Imported Upstream version 1.5.2+dfsg
Checksums-Sha1: 
 1180a3e88555f4c3999a69190f5373787e17d599 1468 flashgot_1.5.2+dfsg-1.dsc
 0938ab142bdded61378c5079e29a7a4a427ac973 296904 flashgot_1.5.2+dfsg.orig.tar.gz
 057d02a914e60eff4b3352d64802fc5b6c9fd108 4319 
flashgot_1.5.2+dfsg-1.debian.tar.gz
 89a1ca4bf2243e3ccdffe0b2b43ef2b89870610f 411472 
xul-ext-flashgot_1.5.2+dfsg-1_all.deb
Checksums-Sha256: 
 83adf038f7d0d8b1e11483e5497698f10a31ede8d030219ca2c20a9c7e2f2405 1468 
flashgot_1.5.2+dfsg-1.dsc
 d002a34369633921b8d7a92d93cf2b5a2db0532a74c21587ca6bf028eac5e6a4 296904 
flashgot_1.5.2+dfsg.orig.tar.gz
 385cf7576c68bade651cc01486bcd5405eb87b52100a0896b2a2b0560fc87ec5 4319 
flashgot_1.5.2+dfsg-1.debian.tar.gz
 332282e26abe7011496eecafb56030794c403c86c17cd005cead1be77ae2559d 411472 
xul-ext-flashgot_1.5.2+dfsg-1_all.deb
Files: 
 d3789f690f586c0edbd337424fd95c78 1468 web optional flashgot_1.5.2+dfsg-1.dsc
 3709f0ba4c3a94ae291403ce715e51ed 296904 web optional 
flashgot_1.5.2+dfsg.orig.tar.gz
 0ed8497b1cc3bc1f28958b74bb1a2f3c 4319 web optional 
flashgot_1.5.2+dfsg-1.debian.tar.gz
 54b9d0b2fec7a918ed6e04eb458d878f 411472 web optional 
xul-ext-flashgot_1.5.2+dfsg-1_all.deb

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

iD8DBQFQ5WvJVkEm8inxm9ERAvjsAJ0QhqfRrPqLA31hO29wJzneUf3P7QCeP/CR
MB/GuPQWIlo4vMiSMo8SV2k=
=bfry
-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/e1tqjgi-0004dw...@franck.debian.org



Accepted verilator 3.843-1 (source amd64)

2013-01-03 Thread Ahmed El-Mahmoudy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 12:52:18 +0200
Source: verilator
Binary: verilator
Architecture: source amd64
Version: 3.843-1
Distribution: unstable
Urgency: low
Maintainer: Debian Electronics Team 
pkg-electronics-de...@lists.alioth.debian.org
Changed-By: أحمد المحمودي (Ahmed El-Mahmoudy) aelmahmo...@sabily.org
Description: 
 verilator  - fast free Verilog simulator
Changes: 
 verilator (3.843-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control:
 + Bumped Standards-Version to 3.9.4
 + Remove obsolete DMUA field
 + Use canonical URIs in VCS-* fields
Checksums-Sha1: 
 2e1c73bbb3eb56a0ef34df50fcdcfaaffa7b2532 1672 verilator_3.843-1.dsc
 6bd654881559c8dfb2c06b3c910b047861baecdb 1841526 verilator_3.843.orig.tar.gz
 346406bbc6e8785183527294cb9acce2b2a116a7 7355 verilator_3.843-1.debian.tar.gz
 fabecb7386d105824dda6e578071488371d1edf6 2876040 verilator_3.843-1_amd64.deb
Checksums-Sha256: 
 ddae158b653e0d36b127fcf24ccbb624cd6b899bb6283d69bb66f90cce6d7b80 1672 
verilator_3.843-1.dsc
 f868b0ce21088d0f28f212e7482cad0192285a1d6ab1002b31526d3f89abb25c 1841526 
verilator_3.843.orig.tar.gz
 59b7f62f00b9a9bc1050cf3f5564a97d70d820e03a22bfd18e56a47e38069e77 7355 
verilator_3.843-1.debian.tar.gz
 b28ce8d4c2b4206fe2ee57f45456302fc2437e2d9d0d0188632f49e6d87e62cc 2876040 
verilator_3.843-1_amd64.deb
Files: 
 4ee9deb07838e621b46466053b75c116 1672 electronics optional 
verilator_3.843-1.dsc
 e8851668ca71e49dd8c0359c64feebc7 1841526 electronics optional 
verilator_3.843.orig.tar.gz
 b202ac73569c8b0f7b927d13f3fc6328 7355 electronics optional 
verilator_3.843-1.debian.tar.gz
 35f628a1cfed7da89d314edb31a5081a 2876040 electronics optional 
verilator_3.843-1_amd64.deb

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

iQEcBAEBCAAGBQJQ5XRlAAoJELwZapTt3aG3Vx4H/RLKILCM/7menACP6iKpNDbg
QufcdT6RzKXq8bYT1L0uMbBHfYAfH+jPqxQ+qii7F9QlZhGJPkV7bCWs79dvROID
ZKrlUZKZ3KCqwHYsAit0yXbaqfhbJyaqbv/nA35+mCJ7C5ShcMLrm/53WBsh/vyo
mhN97+8qFYI6BPWrLqgFW1AoJRrX4XLa88hn7gZL+rHdYRaFRHjl9ssGS669BhGB
e1V4h7gYvyfuwPRHFK3ytQ2i4Gjs22hQCZUOdRFFoPMbAlKHMzWHgYoiMTP1HTFz
5TVa//DM40iAGTJa64EpwRNlgYSD0isHFlcdEI5Om9cfuB0E+YYzK4oid+LOsws=
=r0GA
-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/e1tqjks-fs...@franck.debian.org



Accepted libflexdock-java 1.2.1-1~exp2 (source all)

2013-01-03 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 01 Jan 2013 13:25:44 +0100
Source: libflexdock-java
Binary: libflexdock-java libflexdock-java-doc libflexdock-java-demo
Architecture: source all
Version: 1.2.1-1~exp2
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libflexdock-java - Swing Java docking framework
 libflexdock-java-demo - Swing Java docking framework - demos and examples
 libflexdock-java-doc - Swing Java docking framework - demos and examples
Closes: 697094
Changes: 
 libflexdock-java (1.2.1-1~exp2) experimental; urgency=low
 .
   * Sync from Ubuntu:
 Add build dependency on libjgoodies-common-java, fixes FTBFS
 Thanks to Micah Gersten (Closes: #697094)
Checksums-Sha1: 
 3aa2fd96b05e051604d5e02fa3e9ea3a7ff342a2 1674 libflexdock-java_1.2.1-1~exp2.dsc
 40abd571eb68f0877c6f9cba251acaf064ff4a40 5148 
libflexdock-java_1.2.1-1~exp2.debian.tar.gz
 efdc2f9fffd671e7387b527652d22bdcfb641bbc 395120 
libflexdock-java_1.2.1-1~exp2_all.deb
 9abd6600c4cdf374620617756ad7e578c43ef800 1063710 
libflexdock-java-doc_1.2.1-1~exp2_all.deb
 decc70152eb5b77138fb37319b5d4b2e033870c7 1704670 
libflexdock-java-demo_1.2.1-1~exp2_all.deb
Checksums-Sha256: 
 142b2abc681508df25aa147cb7fdfe7aa4b974a668066e8edcc1bf292999fd6b 1674 
libflexdock-java_1.2.1-1~exp2.dsc
 4ce12feb0a3fe5cc3c161417fc6db6d02b2dca6fc92a416687c605e395f88e69 5148 
libflexdock-java_1.2.1-1~exp2.debian.tar.gz
 640fda62861d116e877ff62dbeb06c70adba942e252987fb9464280c6d2c7e0b 395120 
libflexdock-java_1.2.1-1~exp2_all.deb
 7069fc7564cfa68f513d2bb4817cf6bfc7106f657cd42ed08b29815325e02a1d 1063710 
libflexdock-java-doc_1.2.1-1~exp2_all.deb
 402e6e1f76e8d7157d7d48708d45e00fc93a36aba619c6f648c5662b31588f84 1704670 
libflexdock-java-demo_1.2.1-1~exp2_all.deb
Files: 
 e951bce8d5313b0c182941ac58192502 1674 java optional 
libflexdock-java_1.2.1-1~exp2.dsc
 634e81867d27c029bcc278684654af25 5148 java optional 
libflexdock-java_1.2.1-1~exp2.debian.tar.gz
 361b0943a8ab1d68e80ac2fe146e818e 395120 java optional 
libflexdock-java_1.2.1-1~exp2_all.deb
 f4e78f67e70e413e0c11af117b332bff 1063710 doc optional 
libflexdock-java-doc_1.2.1-1~exp2_all.deb
 77cefc1fe64489cec105870814232fcb 1704670 java optional 
libflexdock-java-demo_1.2.1-1~exp2_all.deb

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

iEYEARECAAYFAlDldxMACgkQiOXXM92JlhDf5gCfTlhiqA+8JuwUaeTQ5jRj7v8B
+jYAoJMboMNnMPstNtmAzy/dfUKLgqiA
=Xc/L
-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/e1tqjyi-0003fw...@franck.debian.org



Accepted bsdmainutils 9.0.4 (source amd64)

2013-01-03 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 13:18:00 +0100
Source: bsdmainutils
Binary: bsdmainutils
Architecture: source amd64
Version: 9.0.4
Distribution: unstable
Urgency: low
Maintainer: Debian Bsdmainutils Team pkg-bsdmainut...@teams.debian.net
Changed-By: Michael Meskes mes...@debian.org
Description: 
 bsdmainutils - collection of more utilities from FreeBSD
Closes: 695525 695911
Changes: 
 bsdmainutils (9.0.4) unstable; urgency=low
 .
   * Added Debian Squeeze release date. (Closes: #695911)
   * Added calendar for the United Kingdom of Great Britain and Northern 
Ireland.
 Thanks to Peter Tynan ha...@sdf.lonestar.org (Closes: #695525)
Checksums-Sha1: 
 706d209a01a3950bce54be1eb748029cdaba01a1 1060 bsdmainutils_9.0.4.dsc
 b6de540112bf21a9f1c088499444a320638eb233 277401 bsdmainutils_9.0.4.tar.gz
 1b7ee3d1ae436e52b5877a7636c8811ce8bcc510 210306 bsdmainutils_9.0.4_amd64.deb
Checksums-Sha256: 
 02625a513c232c2c26a102b38485366de37e6917da78ab6f0379597f6384deb6 1060 
bsdmainutils_9.0.4.dsc
 b8b6ea9b693ad96bac6188988194c763ec6521944b516a810e7d1a4ed6e93eb7 277401 
bsdmainutils_9.0.4.tar.gz
 4c6485a92cb002f4a71ab7b196b7856d7efccb1717e3a9b7b4fe2b34a70e8fb4 210306 
bsdmainutils_9.0.4_amd64.deb
Files: 
 9f6a282777cb4c186bd11fcd7807e43a 1060 utils important bsdmainutils_9.0.4.dsc
 b5f13bafd2bb9f84c64839dd5db8875b 277401 utils important 
bsdmainutils_9.0.4.tar.gz
 e1ecf4c74f0214fb0a153eceae47fdef 210306 utils important 
bsdmainutils_9.0.4_amd64.deb

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

iD8DBQFQ5Xr6VkEm8inxm9ERArMlAJ4vDtXkEsUhWYUO0llG8gEH26fHEACfUlcZ
iRqombATjgJ2bxwaf8uq2OU=
=6gga
-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/e1tqkcl-0006xg...@franck.debian.org



Accepted libverilog-perl 3.318-1 (source amd64)

2013-01-03 Thread Ahmed El-Mahmoudy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 15:27:09 +0200
Source: libverilog-perl
Binary: libverilog-perl
Architecture: source amd64
Version: 3.318-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: أحمد المحمودي (Ahmed El-Mahmoudy) aelmahmo...@sabily.org
Description: 
 libverilog-perl - framework providing Verilog support
Changes: 
 libverilog-perl (3.318-1) unstable; urgency=low
 .
   [ أحمد المحمودي (Ahmed El-Mahmoudy) ]
   * New upstream release.
   * debian/control:
 + Bumped Standards-Version to 3.9.4
 + Use canonical URIs in VCS-* fields
 .
   [ gregor herrmann ]
   * hardening.patch: add CFLAGS and CPPFLAGS to OPTIMIZE in Makefile.PL.
   * Update years of packaging copyright.
 .
   [ Nathan Handler ]
   * Email change: Nathan Handler - nhand...@debian.org
Checksums-Sha1: 
 ab3513399506574b7d97fa31d8e8261782320a8a 2269 libverilog-perl_3.318-1.dsc
 ea4cd8156ad3cfeaabc2e1dc0044e8bc3d6b9261 549817 
libverilog-perl_3.318.orig.tar.gz
 04fc85d2d9952e32d6c84cb31a2c0dcc9133e88d 7573 
libverilog-perl_3.318-1.debian.tar.gz
 1e92de541bab6c60d20eedb4ff62d070a0a01c66 542000 
libverilog-perl_3.318-1_amd64.deb
Checksums-Sha256: 
 635ac26870cbb39f78e30f12f2c1881fe43af583e6bec1c3aac54087095fe066 2269 
libverilog-perl_3.318-1.dsc
 4b8137a63594609dbec7f01dc41b274e253efe05a10f927a451607eaeb4a19fc 549817 
libverilog-perl_3.318.orig.tar.gz
 b8b16ed1d530e37a836b7dc08449e6df1b892e03008c709dfd7fb8e117d1f45d 7573 
libverilog-perl_3.318-1.debian.tar.gz
 0bd2e538838c2c67b2051b7e5bc078b13b5d34f6d6918de3f42a73b5c13bcd77 542000 
libverilog-perl_3.318-1_amd64.deb
Files: 
 9ed1890028ddfaef41372502f41afa0d 2269 perl optional libverilog-perl_3.318-1.dsc
 5bf8cbce5c2f3d03eb26b5521a854d6b 549817 perl optional 
libverilog-perl_3.318.orig.tar.gz
 1d8af173a6ade5af1ee960da2d90b84d 7573 perl optional 
libverilog-perl_3.318-1.debian.tar.gz
 c13d5794e400b21a74520ac49297cb12 542000 perl optional 
libverilog-perl_3.318-1_amd64.deb

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

iQIcBAEBCAAGBQJQ5Y7KAAoJELs6aAGGSaoGrccQAJIT4O4PRsUD5+uuPFXoD/8I
3GfOqhjW3U0BVDgr4rdEOPbnjnVV7new5muI40kOJM2KfX0YtbYuVdj/ZKqwnVKk
4Kyey0FcWIbFWWd17cTuktVsoHdWAO+Jh2qZu8NrY0BwXv0iwvf/JF4eHmY8H0a8
6VaEhNPqQFlfJLU+L+Bi7cUCGpDfPBTkdStsXOBDv4iuyh1o+jor15kCpb+1Vkox
FVqHSmxN+kuN/Or8bUbbMBrBxfLRfSY2YRot/VdLPJ/AC592meRdRcbpCwwrhRHT
79aOi4JcxmAB+pQ/bOu15PjxPig8qF4vIeX8vdtNmEMyKd8R453Px7WD2285iMo+
v50sTIq4slxuqEMRfR+Yh503xbrGirmYv5PVivy5SAJt5xqvVxXOUuaA1MySXHu0
wFThiR1ZsxvvxRc4TYjhwSJym55ANU9OF+spHGe7YDHrYgZq4ke5EEnTuSqiGfP/
DSOGEsbFaaByndtonosGlMhxkhtQsiutT+f1HbMY84OE3feG2O6MG6OM6tLXdqDb
aB5u4K/+c3QZZEpTFYN/BEKx+hO6af8LKDFT9Znd8/Mkfstwz8qAGEyt4R+JLUYx
biBm5soaibsPNzTpAUEsB4CXKlNsuBQQCJURZJ8TMV/4F/FUM0Nn0cv8coJ+QB97
+pHXg7I//MLIQjy5adCy
=kOXR
-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/e1tqm4y-0003fe...@franck.debian.org



Accepted ruby-activerecord-2.3 2.3.14-3 (source all)

2013-01-03 Thread Antonio Terceiro
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 11:43:56 -0300
Source: ruby-activerecord-2.3
Binary: ruby-activerecord-2.3
Architecture: source all
Version: 2.3.14-3
Distribution: unstable
Urgency: high
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Antonio Terceiro terce...@debian.org
Description: 
 ruby-activerecord-2.3 - ORD database interface for ruby
Changes: 
 ruby-activerecord-2.3 (2.3.14-3) unstable; urgency=high
 .
   * Team upload.
   * debian/patches/2-3-dynamic_finder_injection.patch: fix SQL injection
 vulnerability (CVE-2012-5664).
Checksums-Sha1: 
 7be59767f28c9a6018da6a8bfef5ee2e88497449 1529 
ruby-activerecord-2.3_2.3.14-3.dsc
 5603ec0669c8ceb10a61df67ad28b07a7b746516 11178 
ruby-activerecord-2.3_2.3.14-3.debian.tar.gz
 3be38e9dc9e2c411dbfecc1bf30a101c60268e0c 307580 
ruby-activerecord-2.3_2.3.14-3_all.deb
Checksums-Sha256: 
 41abb3e30b0f9c2e8787093e4bac18409de91b261a60abbe5426de9a585d291c 1529 
ruby-activerecord-2.3_2.3.14-3.dsc
 3c60aaf22d7273524641bfdb423102c95d17b0569ddb30d023e6e4d0f7bdcab8 11178 
ruby-activerecord-2.3_2.3.14-3.debian.tar.gz
 b8e328bd6c630e2cd3155bf49b73220042c799c475340c5f7a04cd2891830607 307580 
ruby-activerecord-2.3_2.3.14-3_all.deb
Files: 
 6db006eed6cdd91b682daaa47e300d7f 1529 ruby optional 
ruby-activerecord-2.3_2.3.14-3.dsc
 b64b4f2e949a93e4e672523ad573ea2d 11178 ruby optional 
ruby-activerecord-2.3_2.3.14-3.debian.tar.gz
 e2b9f498bc085af3a35a0d8bd17f60a2 307580 ruby optional 
ruby-activerecord-2.3_2.3.14-3_all.deb

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

iEYEARECAAYFAlDlmvsACgkQDOM8kQ+cso/ZLACfYt49NPhyy4IHhY/5/pjLPv26
hMkAn3Ail55VR6Lq3D/0HJMjWe2CFVLI
=ScYk
-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/e1tqmjp-0006zs...@franck.debian.org



Accepted ruby-activerecord-3.2 3.2.6-3 (source all)

2013-01-03 Thread Antonio Terceiro
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 11:21:18 -0300
Source: ruby-activerecord-3.2
Binary: ruby-activerecord-3.2
Architecture: source all
Version: 3.2.6-3
Distribution: unstable
Urgency: high
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Antonio Terceiro terce...@debian.org
Description: 
 ruby-activerecord-3.2 - object-relational mapper framework (part of Rails)
Changes: 
 ruby-activerecord-3.2 (3.2.6-3) unstable; urgency=high
 .
   * debian/patches/3-2-dynamic_finder_injection.patch: fix SQL injection
 vulnerability (CVE-2012-5664).
Checksums-Sha1: 
 cddb747857a6bbdb593e82b16a6e998b851bec6e 1645 ruby-activerecord-3.2_3.2.6-3.dsc
 2985fd49a20e488afb2df318c4257abee6341c27 3844 
ruby-activerecord-3.2_3.2.6-3.debian.tar.gz
 88a899564b405fcfd96390aeb1e9c77ea85bd18c 393376 
ruby-activerecord-3.2_3.2.6-3_all.deb
Checksums-Sha256: 
 0e915eb634c62e46d17a9c156393edebeba6b1c40e94ad05932c3101cee5476d 1645 
ruby-activerecord-3.2_3.2.6-3.dsc
 c7ff4b6a25e959a6d031a336442288a8b5cb28fe2a6d6a0791356de1f5caca84 3844 
ruby-activerecord-3.2_3.2.6-3.debian.tar.gz
 11f71fee97fd1d92c7704f10b28f25d00cd477d82e2109bb3f0f3242c85cbae9 393376 
ruby-activerecord-3.2_3.2.6-3_all.deb
Files: 
 6728ac7d27c9992bca5d720d7ed028f3 1645 ruby optional 
ruby-activerecord-3.2_3.2.6-3.dsc
 55fe3826113738a408102c8ca22ec7f4 3844 ruby optional 
ruby-activerecord-3.2_3.2.6-3.debian.tar.gz
 07e55651c19d6d3a01db56cf2fb13327 393376 ruby optional 
ruby-activerecord-3.2_3.2.6-3_all.deb

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

iEYEARECAAYFAlDlloYACgkQDOM8kQ+cso+ggQCfehwBakv72AIVLg+obo79XBXZ
VXMAn3VKQpMUPqqyMQj6HP3cDj6fHG4G
=Qwyj
-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/e1tqmy0-zf...@franck.debian.org



Accepted patch 2.7.1-1 (source amd64)

2013-01-03 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 17:34:45 +0100
Source: patch
Binary: patch
Architecture: source amd64
Version: 2.7.1-1
Distribution: experimental
Urgency: low
Maintainer: Christoph Berg m...@debian.org
Changed-By: Christoph Berg m...@debian.org
Description: 
 patch  - Apply a diff file to an original
Changes: 
 patch (2.7.1-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 fcdf5acbb539cc1c46de1d41a6331b7465154849 1751 patch_2.7.1-1.dsc
 1ebb78c850887c2191e58b2254786ef4595a4c5b 800515 patch_2.7.1.orig.tar.bz2
 174d1b4059b69a8201d725f36a722fedddf5 8956 patch_2.7.1-1.debian.tar.gz
 7d548a6eea14578c27f617c43b33653d705c2a9b 109230 patch_2.7.1-1_amd64.deb
Checksums-Sha256: 
 9061ffc93acaf644270615d09b0d7320e9601f91ff27a90d976d139dd11a60f3 1751 
patch_2.7.1-1.dsc
 aae676de9e95051f425af4507fcc9a019941a2a1f78405e7dbd40bccf786aa11 800515 
patch_2.7.1.orig.tar.bz2
 e1de31d0414977c1d0137948a81cc4b69c27e73e1b577f1be69e5a9e042dec98 8956 
patch_2.7.1-1.debian.tar.gz
 6abc249d9000d89bf188662030ee2b878275589909faaa8c92cf947593c9b695 109230 
patch_2.7.1-1_amd64.deb
Files: 
 9132b42fe555fb3b6028b6de70048d5b 1751 vcs standard patch_2.7.1-1.dsc
 0881a7c6477862fc395f373ada0ec6b6 800515 vcs standard patch_2.7.1.orig.tar.bz2
 088fe501a00286fd903e5117a07b3569 8956 vcs standard patch_2.7.1-1.debian.tar.gz
 d798402fee340809b38682e38785a971 109230 vcs standard patch_2.7.1-1_amd64.deb

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

iQIcBAEBCAAGBQJQ5bWpAAoJEExaa6sS0qeuDhsQAKppUlAccr4UpTCAUYFBdsTu
fFSs9kh4o+YiQ6kX6WeXp8L13ggmv0AdKVU+2TCUaolg3B6pdZnutXil3tjefTeF
lwujGBG4UllKZ6dbQJsyv7OXLxrKWYqfJFrb1/3r3uYoO8ZWTbBTfTlaYnu3l26s
8XtFYhDKu8mTmDiyr3xzVTzYFcPI60/RfiTR7hwcDc4CcapgbvbSALUkJU69dMVZ
0O+3hbeRQHoHtpvjZtYA8hoPZB/MP1jNp8AB578YUrQvl77Kar3ihmWtVHActxkM
sBXbNrgI232b9Zaa8O7OlbKY9uDYbyayEWGkE4POaQRmXNBiksREubYm1jWS3N/3
3oIwSdSdErRwr2JHXvvHhfvUWuOYejBRQoYSA0Vip7/Jca8F08XXtdGqHxS/y5Zy
eDgMLL61K+K2J28QKJFECt3zKWEZSYSdVm6vzYMv/6hWboV/1VGMmKE3odaf/hR4
8cqvainqRcQwzP4T+p61uneVYL/P6EWa+Jcf+09QF0N8DCw4ReHzaecmt8JjtcPb
zEQx6rBZ9DdbT6+7IgvdyReAY5jVMppDWNFlq6Zv2vl0ZPCBlzO8kjr05sikzthL
B4n6ZiSOtbEW3v2BEy53+RdNaEOEoD/BmbX8xvOmFKjbDwCy/lm8ohzqdDrtLQy7
Jse0iYlb7nogs0ha2Wr8
=OKzW
-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/e1tqoba-0004i3...@franck.debian.org



Accepted quilt 0.60-6 (source all)

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

Format: 1.8
Date: Thu, 03 Jan 2013 18:25:53 +0100
Source: quilt
Binary: quilt
Architecture: source all
Version: 0.60-6
Distribution: unstable
Urgency: low
Maintainer: Martin Quinson mquin...@debian.org
Changed-By: Martin Quinson mquin...@debian.org
Description: 
 quilt  - Tool to work with series of patches
Closes: 696858
Changes: 
 quilt (0.60-6) unstable; urgency=low
 .
   * d/deb3: Reintroduce QUILT_PATCH_OPTS: previous bug report was buggy.
 We should just depend on patch = 2.6 to get it working properly.
 Sorry for letting the buggy fix in, and thanks to Osamu for noticing.
 Closes: #696858.
Checksums-Sha1: 
 6a85ff730e28e9a835af229ce1b4a207d7c6df1f 1964 quilt_0.60-6.dsc
 a891eb04bde3ad4d13b7a8fd90d9403a0e840ad5 36730 quilt_0.60-6.debian.tar.gz
 fc09169c910c1b087905e1a891ec18ec788f1e54 380794 quilt_0.60-6_all.deb
Checksums-Sha256: 
 e6847b1b97623aefd3f23a41d6b0ff3d957bc69cf02ab5f274b501b5d2c52102 1964 
quilt_0.60-6.dsc
 d3317c46d08b9ce20ad5639fe2cad36052cb0646adba828c5dce2223bf441920 36730 
quilt_0.60-6.debian.tar.gz
 039ba87cff0cdb50ad931c0ddd5645085d2ff7f2c1205e323ea35ef1a095488a 380794 
quilt_0.60-6_all.deb
Files: 
 c5395fbb55608db9236c807dc50bba70 1964 vcs optional quilt_0.60-6.dsc
 c48bdde724b05e19a346d3fbe5e33c77 36730 vcs optional quilt_0.60-6.debian.tar.gz
 4e08d67148b654d3f15efdb7a3423d30 380794 vcs optional quilt_0.60-6_all.deb

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

iQIcBAEBCAAGBQJQ5cFRAAoJEJi9lyRPc76nkpsP/1/jX4oqcVEd59nOz1N0xdyl
UYYxHhLW03DK/idufoFtxmi9QJpzSipaeQkE1whQ85jKcJash9VmE3aF/jWQQyOi
32fseLKmtDavWigxxS7FMIVREukyyBTrZm31OYptRh7S5Aq0B8dGS6QgtTQij79u
pLzSJ4WlqOkVamtSLvH3GK3A/U564aZ28aBAHyW8N6edbsEJ7+OkQ8JZQy53UfKP
uhlmySatIrHfp47nyrT2GcV3e18Dy+Is5jk4dMAr4t2cOPEomzzsd0WmfhSUMBgx
8ROuYvpHT7cvfskzX/hX2IUcWAHhW6E3Ll3GYrG9pm1eJcH8BDeU9i3Rtza8Gq2n
TLbDTZxRKnDz+g62Pi3Em5jJmw1SOpb+lZCVpZvVrCuSLgfPBduG18c3+Z9QFNDf
99R/UIePIMpk5RndtoKiyy9ozfGn8/rHvtKQi+UM5qTHDr5Hc1l96WjfnWpIT3Es
zA6acu3JusnVcC5ltBx0JxYd3YWPGZsf6Cgiy1lxVKmMqS07BrCxvNKLeClu+tVM
uU8MHlOK3LuD/W3yslblI/NrinIB8yN11LYtElzy7EcKQ0Ia6/73mtiyGIVBu2ZO
e1zgENS/ujtJoYdau6dMydcWQq3R1HMbTrzqPaIuvWp2gor7DsO4bmRutkLdsggv
YM9w0kWEyv4/ryueBMR/
=cFKC
-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/e1tqot7-0004jd...@franck.debian.org



Accepted ircd-ratbox 3.0.7.dfsg-3 (source amd64)

2013-01-03 Thread Duck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 14:12:05 +0100
Source: ircd-ratbox
Binary: ircd-ratbox ircd-ratbox-dbg
Architecture: source amd64
Version: 3.0.7.dfsg-3
Distribution: unstable
Urgency: high
Maintainer: Marc Dequènes (Duck) d...@duckcorp.org
Changed-By: Marc Dequènes (Duck) d...@duckcorp.org
Description: 
 ircd-ratbox - advanced, stable and fast ircd
 ircd-ratbox-dbg - debugging symbols for ircd-ratbox
Closes: 697093
Changes: 
 ircd-ratbox (3.0.7.dfsg-3) unstable; urgency=high
 .
   * Applied security fix for CVE-2012-6084 using r27411 in upstream SVN
 (Closes: #697093).
Checksums-Sha1: 
 671b4bc2a536de7ca2edbf38275574845781f9ad 1518 ircd-ratbox_3.0.7.dfsg-3.dsc
 e2668c302d4e6a9465db35130db326acec970932 25322 
ircd-ratbox_3.0.7.dfsg-3.debian.tar.gz
 1a1c0f79f5f8abe7bc925e09250e503013c8075f 671536 
ircd-ratbox_3.0.7.dfsg-3_amd64.deb
 8ea80d3e350786cac63fa63b92d36f55bad1aaeb 1302334 
ircd-ratbox-dbg_3.0.7.dfsg-3_amd64.deb
Checksums-Sha256: 
 b34ef865d0c42080970bdb9d0549f82e0f889e95185cccd8710f2f4df2127b21 1518 
ircd-ratbox_3.0.7.dfsg-3.dsc
 df84809fa41316d759fb6e074fac1cf706be545dfee2cb6e45ed5da8b1881f67 25322 
ircd-ratbox_3.0.7.dfsg-3.debian.tar.gz
 c858174aad8b04cab6645e2f3fff59af0822c410b528804522d19c54db22af1c 671536 
ircd-ratbox_3.0.7.dfsg-3_amd64.deb
 db0046b97bd7f10b38be6c0341b3b8db64445f1a8654fde025fb4c01c4343717 1302334 
ircd-ratbox-dbg_3.0.7.dfsg-3_amd64.deb
Files: 
 09a4619518304a7aba23c46da2eff3fb 1518 net optional ircd-ratbox_3.0.7.dfsg-3.dsc
 5e65f13dba61c98da0dcc33a0be5beb7 25322 net optional 
ircd-ratbox_3.0.7.dfsg-3.debian.tar.gz
 e412aec57efe41dc97f050a41304a2a7 671536 net optional 
ircd-ratbox_3.0.7.dfsg-3_amd64.deb
 4e1bd88fbc258b16ea34aa30eb856459 1302334 debug extra 
ircd-ratbox-dbg_3.0.7.dfsg-3_amd64.deb

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

iEYEARECAAYFAlDl0JMACgkQsczZcpAmcIbAkwCdF4nV2OwpRNetGT9dB9TNN0rp
UpAAn3ytg3Vj1fsU/Mke6kXIG/MUk9Cx
=vA+8
-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/e1tqppd-0006yi...@franck.debian.org



Accepted libopenusb 1.1.7-4 (source amd64 all)

2013-01-03 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 13:43:16 +
Source: libopenusb
Binary: libopenusb-dev libopenusb0 libopenusb-doc
Architecture: source amd64 all
Version: 1.1.7-4
Distribution: unstable
Urgency: low
Maintainer: Simon Richter s...@debian.org
Changed-By: Simon Richter s...@debian.org
Description: 
 libopenusb-dev - alternative userspace USB programming library
 libopenusb-doc - alternative userspace USB programming library
 libopenusb0 - alternative userspace USB programming library
Changes: 
 libopenusb (1.1.7-4) unstable; urgency=low
 .
   * Properly activate multiarch support
   * Mark packages as Linux-only
Checksums-Sha1: 
 32cf446dd5f4e9908e444d3790c0f9f9d95c1dba 1469 libopenusb_1.1.7-4.dsc
 d974bec964154eb2f10bb8acd3038de02d90eb77 4118 libopenusb_1.1.7-4.debian.tar.gz
 45d24e4445fbda1722d3c178d0478feae8b033b1 109054 
libopenusb-dev_1.1.7-4_amd64.deb
 797f7e26dad11af9293bb813a54d2c7f9e6f1906 57690 libopenusb0_1.1.7-4_amd64.deb
 7d37b91ed3a52498d3c029eec41c01991058b70c 42026 libopenusb-doc_1.1.7-4_all.deb
Checksums-Sha256: 
 b01df65b5fe384f1fd8cb2844a670dab727af1fd1f595ff577ec70f32fa93627 1469 
libopenusb_1.1.7-4.dsc
 1513bfd2c41b4e85b023ef1f38d6a5bbf2a01df166a3c1534b6175c26a68e505 4118 
libopenusb_1.1.7-4.debian.tar.gz
 c95cabe913863707109422427879248ac85b9bc2c441408be960c8d58b7d0f46 109054 
libopenusb-dev_1.1.7-4_amd64.deb
 32362a7910a09bbc82c48f7fabaffd5002c03957bbd922ab0dd9fc3c6749957f 57690 
libopenusb0_1.1.7-4_amd64.deb
 6c30729a4384059e50aff50708913b3eda96f90a9c098f64a961047e690dbe4c 42026 
libopenusb-doc_1.1.7-4_all.deb
Files: 
 5cefae460f8085476fe0607130f0cd2d 1469 libs extra libopenusb_1.1.7-4.dsc
 0e45a14be116714842063d3f7ef2c5c0 4118 libs extra 
libopenusb_1.1.7-4.debian.tar.gz
 884edad144bae1e4d4759c48fcb6c345 109054 libdevel extra 
libopenusb-dev_1.1.7-4_amd64.deb
 62020957ea9d88f9e76db887bca33a00 57690 libs extra libopenusb0_1.1.7-4_amd64.deb
 4ce5ee0e87e9aa710368e42e498dcc20 42026 doc extra libopenusb-doc_1.1.7-4_all.deb

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

iJwEAQECAAYFAlDl0M0ACgkQ0sfeulffv7uLtQP/TpLkahK7NoklT3D2CLFtbF6n
dotXyUgavzovaVTgF1fln2268QzvMXI8TMTmvJFCoAmJ6iBETHt0X7mYCQCWcWF3
GFLTCXIJUlF/D2jbQI723b9zue/+4RVvq0vEQF8LJBxKpo115ax9fY4B3c4Om6L1
6SVBZAR9puxKoILIZAU=
=c3lV
-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/e1tqppm-0006et...@franck.debian.org



Accepted openafs 1.6.2~pre2-1 (source i386 all)

2013-01-03 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 10:07:39 -0800
Source: openafs
Binary: openafs-client openafs-fuse openafs-kpasswd openafs-fileserver 
openafs-dbserver openafs-doc openafs-krb5 libkopenafs1 libafsauthent1 
libafsrpc1 libopenafs-dev openafs-modules-source openafs-modules-dkms 
libpam-openafs-kaserver openafs-dbg
Architecture: source i386 all
Version: 1.6.2~pre2-1
Distribution: experimental
Urgency: low
Maintainer: Russ Allbery r...@debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 libafsauthent1 - AFS distributed file system runtime library (authentication)
 libafsrpc1 - AFS distributed file system runtime library (RPC layer)
 libkopenafs1 - AFS distributed file system runtime library (PAGs)
 libopenafs-dev - AFS distributed filesystem development libraries
 libpam-openafs-kaserver - AFS distributed filesystem kaserver PAM module
 openafs-client - AFS distributed filesystem client support
 openafs-dbg - AFS distributed filesystem debugging information
 openafs-dbserver - AFS distributed filesystem database server
 openafs-doc - AFS distributed filesystem documentation
 openafs-fileserver - AFS distributed filesystem file server
 openafs-fuse - AFS distributed file system experimental FUSE client
 openafs-kpasswd - AFS distributed filesystem old password changing
 openafs-krb5 - AFS distributed filesystem Kerberos 5 integration
 openafs-modules-dkms - AFS distributed filesystem kernel module DKMS source
 openafs-modules-source - AFS distributed filesystem kernel module source
Closes: 659663 685973 693311 694063
Changes: 
 openafs (1.6.2~pre2-1) experimental; urgency=low
 .
   * New upstream prerelease.
 - Support Linux kernels up to 3.7.  (Closes: #685973)
 - Fix fileservers to properly report 2 TiB partitions.
 - Fix stale volume info from vos examine on non-DAFS filservers.
 - Fix possible volume corruption with vos convertROtoRW.
 - Fix bosserver to preserve all command-line options over restart.
 - Fix bosserver to properly kill hung processes during shutdown.
 - Fixes for memcache, especially on Solaris.
 - Increase the size of the DNS resolver answer buffer to allow sites
   with a long response list to use SRV and AFSDB records.
 - Fix possible abuse of fs mkmount.  In previous versions, users could
   crash a client by nesting volume mounts.
 - Fix client page cache corruption on Linux.  When multiple clients
   read and write to a file, the reading client may see first couple
   bytes of a file as nulls.
 - Support newer glibc versions.
   * Build-Depend on hardening-wrapper and enable it to work around the
 current upstream munging of CFLAGS and LDFLAGS.  (Closes: #659663)
   * Fix server installation instructions in README.servers, which used the
 early demand-attach syntax before separate demand-attach binaries were
 built.  Thanks, Björn Torkelsson.  (Closes: #693311)
   * Remove the symlink from the openafs-fileserver doc directory to the
 openafs-client doc directory.  We used to install this symlink and
 share doc directories, but this stopped in 1.4.12+dfsg-1.  However,
 dpkg doesn't remove symlinks to a directory, so systems that had
 upgraded from the older package were overwriting openafs-client doc
 files with the openafs-fileserver versions.  Thanks, Andreas
 Beckmann.  (Closes: #694063)
   * Switch to xz compression for the upstream tarball, Debian tarball, and
 binary packages.
   * Remove debian/import-upstream and change README.source to document
 using git-import-orig with --upstream-vcs-tag instead.
   * Move single-debian-patch to local-options and patch-header to
 local-patch-header so that they only apply to the packages I build and
 NMUs get regular version-numbered patches.
   * Update Vcs-* URLs for the new anonscm.debian.org URL layout.
   * Update standards version to 3.9.4 (no changes required).
Checksums-Sha1: 
 a2def0bcff1f8c54b47cf6d70df4fd948e0d6381 2581 openafs_1.6.2~pre2-1.dsc
 7290baee05595ef6528eeec3edb08e547c79993c 6595868 openafs_1.6.2~pre2.orig.tar.xz
 5f0ff49dbe7aa04db6a8467df1ff7e8778e8fe05 123988 
openafs_1.6.2~pre2-1.debian.tar.xz
 0f68ede81c21a820f741cb376043ed752efb1429 1952888 
openafs-client_1.6.2~pre2-1_i386.deb
 b018501b44a1b73e59100019801e4a2feaf90037 270148 
openafs-fuse_1.6.2~pre2-1_i386.deb
 ae533f8991053d8610517400dd508bf3f14ad0d1 210500 
openafs-kpasswd_1.6.2~pre2-1_i386.deb
 2f211cf4c46fb74204bcb2319daeadea571c51aa 1276422 
openafs-fileserver_1.6.2~pre2-1_i386.deb
 373035171fe4464b7989e3238f6583642ada7faa 393558 
openafs-dbserver_1.6.2~pre2-1_i386.deb
 ed2b1cf04f99a2b9b13fe911af5618b5b5a063a9 3947600 
openafs-doc_1.6.2~pre2-1_all.deb
 bbfc0e2ffa3d3507978c32e5e85a5b4520abce50 256522 
openafs-krb5_1.6.2~pre2-1_i386.deb
 17390aa1950b9974dcf298642dcde0b93fe444df 80428 
libkopenafs1_1.6.2~pre2-1_i386.deb
 ae99a7f07beaf6b381f146b7dfe418e47e8de14d 142736 

Accepted mxml 2.7-1 (source amd64)

2013-01-03 Thread Luis Uribe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Aug 2012 21:12:59 -0500
Source: mxml
Binary: libmxml-dev libmxml1
Architecture: source amd64
Version: 2.7-1
Distribution: experimental
Urgency: low
Maintainer: Luis Uribe a...@eviled.org
Changed-By: Luis Uribe a...@eviled.org
Description: 
 libmxml-dev - small XML parsing library (development)
 libmxml1   - small XML parsing library (runtime)
Closes: 684783
Changes: 
 mxml (2.7-1) experimental; urgency=low
 .
   * New upstream release (Closes: #684783)
   * debian/control
 - Bump Standards-Version: 3.9.3 (No changes)
   * debian/compat
 - Update debhelper compat level to 9, needed to using dpkg-buildflags
   * debian/rules
 - Use dh tiny rules
   * patches/series
 - Add 03_link_ldflags.diff to add missing $(LDFLAGS) to Makefile
   * debian/copyright
 - Migrate to DEP-5 format
Checksums-Sha1: 
 79b397791d290e6c4e8472142438007c405a1caa 1057 mxml_2.7-1.dsc
 a3bdcab48307794c297e790435bcce7becb9edae 262027 mxml_2.7.orig.tar.gz
 b3ed1e958ed28ccc5180a1aa6b38f8f37142c91b 11182 mxml_2.7-1.debian.tar.gz
 780edf63f6ec23fbf557f7ae900504abd52f2853 70294 libmxml-dev_2.7-1_amd64.deb
 0ce8206455d2c97453f58b1da431c81e07e02214 31904 libmxml1_2.7-1_amd64.deb
Checksums-Sha256: 
 69a143c141ffe1cc2c597449adc0c91db13d5b8ff68c40c6083f9440d7b0f22c 1057 
mxml_2.7-1.dsc
 a77200ee4c1e1cf2eb531595ec17ce31805760699d260915496c39d3388eb803 262027 
mxml_2.7.orig.tar.gz
 563fe862f479320be4a9ed570b191875af71591edd40fef52aab46e39285f619 11182 
mxml_2.7-1.debian.tar.gz
 1a8eecbe8781269bcc98d6e045b8a49dac75d8855e5786b0c2b57852ce3a52d4 70294 
libmxml-dev_2.7-1_amd64.deb
 763a40acd62ce7496c8ef72bcd82e1e9369c79d04b0b2978f1437f41a0ea0435 31904 
libmxml1_2.7-1_amd64.deb
Files: 
 a6521ac362e3da793755b3dd40b1417b 1057 libs optional mxml_2.7-1.dsc
 76f2ae49bf0f5745d5cb5d9507774dc9 262027 libs optional mxml_2.7.orig.tar.gz
 81152329c1bde97f64edeb912036fbaa 11182 libs optional mxml_2.7-1.debian.tar.gz
 9a7ce4c4a88335756de83d5dd2c44157 70294 libdevel optional 
libmxml-dev_2.7-1_amd64.deb
 f2fe13fd3855963f8b3c04fece95ba7a 31904 libs optional libmxml1_2.7-1_amd64.deb

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

iEYEARECAAYFAlDl1JsACgkQjRFFY3XAJMi8OACfTq4Jhzh/j7NZkUjM9uGQzZhE
njAAniaCfoYZWBCvfwQQvzaSfQIDQKcB
=VlV1
-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/e1tqqiz-0003ns...@franck.debian.org



Accepted gnucash 1:2.4.10-6 (source amd64 all)

2013-01-03 Thread Sébastien Villemot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 20:19:13 +0100
Source: gnucash
Binary: gnucash gnucash-dbg gnucash-common python-gnucash
Architecture: source amd64 all
Version: 1:2.4.10-6
Distribution: unstable
Urgency: low
Maintainer: Sébastien Villemot sebastien.ville...@ens.fr
Changed-By: Sébastien Villemot sebast...@debian.org
Description: 
 gnucash- personal and small-business financial-accounting software
 gnucash-common - common files for the financial-accounting software Gnucash
 gnucash-dbg - debugging symbols for the accounting software Gnucash
 python-gnucash - Gnucash interface for Python
Closes: 696282
Changes: 
 gnucash (1:2.4.10-6) unstable; urgency=low
 .
   * handle-xml-parse-failure.patch: new patch, fixes potential data loss when
 XML parsing fails (Closes: #696282)
Checksums-Sha1: 
 4ef7fbbcc7c17293581dfca128740a93fbeb96c6 2416 gnucash_2.4.10-6.dsc
 ee45ed07e19efcca38cc9e8e9ce5793572eb7ab7 43737 gnucash_2.4.10-6.debian.tar.gz
 2bbf255da4e3c7e265741b5bcd1e0db72a4848ef 2821386 gnucash_2.4.10-6_amd64.deb
 4530a3b67b97ef5b9cf32a7ef871e78c2074713b 3377108 gnucash-dbg_2.4.10-6_amd64.deb
 f680aacf42e61a079bfa53b73b91e59b27b45afe 5858910 
gnucash-common_2.4.10-6_all.deb
 91adfcac38d1f5ef456cacc46734548105cbad61 373694 
python-gnucash_2.4.10-6_amd64.deb
Checksums-Sha256: 
 e18f4477ca62cda5d5b8209ca0236ca666c3b2c31b0c22fc75e78127ebda852b 2416 
gnucash_2.4.10-6.dsc
 6139d0bde2034f5620f6dcbda52d27d90b9c057e0a51a2ea278285bedb03ab12 43737 
gnucash_2.4.10-6.debian.tar.gz
 488c1f631c30fafd0a1c7581eaea51e87a5357fb19e6667cea1ea507da0f1527 2821386 
gnucash_2.4.10-6_amd64.deb
 7410c4e737b579d5055518a7576de89b8beebd531e91836b20ffde755a1edf96 3377108 
gnucash-dbg_2.4.10-6_amd64.deb
 564e1489121103127b03d736040accc00ff6c4a3dc46a2fa143d20683dedae6c 5858910 
gnucash-common_2.4.10-6_all.deb
 37d2a042ad91b5b1b61c776707c5be743982f0e4b60d1e6e11d88ebb66ab7d6a 373694 
python-gnucash_2.4.10-6_amd64.deb
Files: 
 2ae83a6cdbf5ec52660c617a60b56615 2416 gnome optional gnucash_2.4.10-6.dsc
 902afe39f1268c72ba75fb8ea495ad09 43737 gnome optional 
gnucash_2.4.10-6.debian.tar.gz
 25fd86520ec510b92b7940139e2be988 2821386 gnome optional 
gnucash_2.4.10-6_amd64.deb
 5ae475fc0ae07dc1354afac57c8173e7 3377108 debug extra 
gnucash-dbg_2.4.10-6_amd64.deb
 c459fd0609083eee246da37aca9606dc 5858910 gnome optional 
gnucash-common_2.4.10-6_all.deb
 19b1b186bb4bdbf4ad546b2bfb20922a 373694 python optional 
python-gnucash_2.4.10-6_amd64.deb

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

iQIcBAEBCAAGBQJQ5dyEAAoJECzs6TUOzr5K0vsP/RmQppk0E+smTBVnYac/4aJC
XQ3lzz29gQ+37eIypHDQhNPcs+ld/u/shLsw9filiwNhZC9p0zZubwHeCaWo7lcB
DWSU4q9oIk6724maS4q3cy4W0/X+3O39nvdXn2SkQHulFFDkXl1qFfaDwr+iTvmK
Lqox7LLug7u/FO5mqmqn1DkkL9TQMub+rEVUKAc8HZuMdDYlmW7Ud6+ZVt1eGpJ1
D7yzm/TSF3Xl+8/U8dNcaDga1nqyxZRwnGO5DervMCB8EuSP0nk9ln1PIwUCHdbv
iab/FLU2jMQ6u8UzZQNJVtxJEnM3KduO872G7Xt7QrQlBPtUjIJ4K/38W9lsZ84/
uv7K+KU2jH102zGOjyNZtdJ4gc28Fjuxd9XCO1SSeEpBkRvW5sB+zO6OS1OxvZQF
sv0hOmkGVppGKhaFclsg7gnX7PehFjlNPDcQ9QCZ6B95ycSSi8QLLQibhkKmDgUf
ZGRvuJ8o2iVYz8iN6YjxsW8hAYfMNxHdlUnhx4sYxmqoOMLKpP1HUjz9B2SEAaqj
AahuKa7DKjdIrKnxcLAT/4aEt4Z7t5vRBExoty3CIkhgyUfrqli9G8rK0MZIquY2
mK/iPZhoC3HBYMvfmx8+PFUb2m+pyGfHihYfOVVXczH0AOZcXwSd4DUim4LjOgLL
3gBJZrshIpxMmIW9yBk1
=lmI7
-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/e1tqqls-0002jk...@franck.debian.org



Accepted geiser 0.2.2-1 (source all)

2013-01-03 Thread David Bremner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 16:17:25 -0400
Source: geiser
Binary: geiser
Architecture: source all
Version: 0.2.2-1
Distribution: experimental
Urgency: low
Maintainer: David Bremner brem...@debian.org
Changed-By: David Bremner brem...@debian.org
Description: 
 geiser - enhanced Scheme interaction mode for Emacs
Changes: 
 geiser (0.2.2-1) experimental; urgency=low
 .
   * New upstream version.
 - Supports Racket 5.3+
Checksums-Sha1: 
 37ef8ecd63a53867e23b3a845b327f54398d1187 1328 geiser_0.2.2-1.dsc
 c18601c7d64f7e3ff3cd11766ce00547e8d35eb2 351823 geiser_0.2.2.orig.tar.gz
 a23b88744ffbe978dc0782cdbb8592b31f63fe39 5962 geiser_0.2.2-1.debian.tar.gz
 1a58644d8122e3c867ada791ac7f23a2f92dac10 175432 geiser_0.2.2-1_all.deb
Checksums-Sha256: 
 26f5f40c4a1e1d9ab4900e96fd1960cc17d6f7ee196235ae86e0d82ca6c207aa 1328 
geiser_0.2.2-1.dsc
 220662805b7683b8b19c0e5418f801b6bf9a1726dc9be70857642b844e5ece49 351823 
geiser_0.2.2.orig.tar.gz
 4088b21a4bf37dd55f3f315b2b90fe45c1573c56e9181a03835053c964e5cd82 5962 
geiser_0.2.2-1.debian.tar.gz
 73e447960cf14b43c1a4d7fabe907b26e9c1b5a13ea2e33ea902d8a1158c9fa0 175432 
geiser_0.2.2-1_all.deb
Files: 
 5ea6e69cd09ce4a2571f6c979babb27c 1328 lisp optional geiser_0.2.2-1.dsc
 8d6cc1d4a4ae703eda37580e01005756 351823 lisp optional geiser_0.2.2.orig.tar.gz
 3d2763a5b84487916d75a91ad942e04f 5962 lisp optional 
geiser_0.2.2-1.debian.tar.gz
 edc5ee1663fb44913984e820a9c1d286 175432 lisp optional geiser_0.2.2-1_all.deb

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

iJwEAQECAAYFAlDl7E0ACgkQTiiN/0Um85lhbwP/dNjblZu105izFWriNBLQFYRa
mRVLruiXioQUkdOzbgcWbPjHORti5IZg/kH/i26Vi2UE5n61CtWFHquyif8fR9Xw
79SEDJYhAMVSD4a8q7Z+Qd6uB0PyVOkf1DlVDovyJa5t2Ii7YClo46kT2i50r+Du
Ty8zC5OSsjDEoWsQkbk=
=E0g1
-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/e1tqrhl-0002kc...@franck.debian.org



Accepted gnucash 1:2.4.11-2 (source amd64 all)

2013-01-03 Thread Sébastien Villemot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 20:40:43 +0100
Source: gnucash
Binary: gnucash gnucash-dbg gnucash-common python-gnucash
Architecture: source amd64 all
Version: 1:2.4.11-2
Distribution: experimental
Urgency: low
Maintainer: Sébastien Villemot sebast...@debian.org
Changed-By: Sébastien Villemot sebast...@debian.org
Description: 
 gnucash- personal and small-business financial-accounting software
 gnucash-common - common files for the financial-accounting software Gnucash
 gnucash-dbg - debugging symbols for the accounting software Gnucash
 python-gnucash - Gnucash interface for Python
Closes: 616515 691503 696282
Changes: 
 gnucash (1:2.4.11-2) experimental; urgency=low
 .
   * Use my @debian.org email address
   * Drop obsolete DM-Upload-Allowed field
   * Bump to Standards-Version 3.9.4, no changes needed
   * regcomp-memory-leak.patch: new patch taken from upstream trunk
 (Closes: #616515)
   * Ship gnucash-env and gnucash-make-guids in /usr/bin (Closes: #691503)
   * handle-xml-parse-failure.patch: new patch, fixes potential data loss when
 XML parsing fails (Closes: #696282)
Checksums-Sha1: 
 72e18713f1e2c3fdfd8370a3d828ca8a1ea75c02 2388 gnucash_2.4.11-2.dsc
 2eebc999306c77cbbbadd0ed5977fc1c3bffda7b 43944 gnucash_2.4.11-2.debian.tar.gz
 3e4b35950a1c2fe2f6c4dd6df5fba5022ced1552 2760012 gnucash_2.4.11-2_amd64.deb
 8bf79fefeedfb7e65e3d53d22e3a088bbb059a45 6797362 gnucash-dbg_2.4.11-2_amd64.deb
 8be1e55d82c9a2c4f12c012bbfb87dbb87dec4b6 5946014 
gnucash-common_2.4.11-2_all.deb
 f73e7aa818315452710013ef01254a6b39ab8388 351830 
python-gnucash_2.4.11-2_amd64.deb
Checksums-Sha256: 
 5ef29ec59e2c3f75dcc98d052c457f88157c382e202a282d0d56bddc5512a771 2388 
gnucash_2.4.11-2.dsc
 f18d41f03f75791018e2386db92dcab6b19665842979599087be19d2bc66f036 43944 
gnucash_2.4.11-2.debian.tar.gz
 679db83784bc28e3332303235de40a8057b2f96b7881c5ff388dccaee06a19d8 2760012 
gnucash_2.4.11-2_amd64.deb
 c9c015ffa44245027bdf24d60393a2d63ed071cd9dc1cc73fb227ccadb3c36e2 6797362 
gnucash-dbg_2.4.11-2_amd64.deb
 90f5ed7ac2dacade88d1634774b8159054a9893e6a21656e1b228a0b8cfacf8f 5946014 
gnucash-common_2.4.11-2_all.deb
 d187b9f4b97d4d0e5258301d15a0f2ff101cfc6341930adb1b3c2e86a1b9e835 351830 
python-gnucash_2.4.11-2_amd64.deb
Files: 
 d795edb5dfa6e2f3d876347d95d36b7c 2388 gnome optional gnucash_2.4.11-2.dsc
 89b19e78b2866673d2f7a9435efd73fc 43944 gnome optional 
gnucash_2.4.11-2.debian.tar.gz
 52b78e559e6d89ec0c9cdd84e0bcf4e9 2760012 gnome optional 
gnucash_2.4.11-2_amd64.deb
 ac2bdba35315cbe8d482e407b190f480 6797362 debug extra 
gnucash-dbg_2.4.11-2_amd64.deb
 6c68ab77f21baf8554049a8ca2141d89 5946014 gnome optional 
gnucash-common_2.4.11-2_all.deb
 2e18d0dea5d1d13bb0c53373e9f20dd4 351830 python optional 
python-gnucash_2.4.11-2_amd64.deb

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

iQIcBAEBCAAGBQJQ5eJVAAoJECzs6TUOzr5KEqYP/1NUIL9+CUzk8nUdOSZzipA2
EsVK/D3lqA0/UCGefWL/Trx3AASM5aXZq0+f9J0rB93NTN4K5nZdXgLe7ZEy1m8r
WalPPaQAjRLed6wAziQJElyiESZ2nOnMGZBGHsAIRfVlVth4hlG2kACIk9cm8at1
vZJ7TBVHocakz+oOSKtBT6+4FiU9drnYew9P9HHeoyv9IJBkI+mRVRHsFQxlMmcR
kT0+hmR1LM9/PlsC/mx80lJ9A9KdFykgsILHNkPy7BMp0SacnEZqLZXtr94vdQDV
4PVKd2Wp8czFqOeVwKOmWL948Svw8MY6bbbtMMpc5l3ppoZogx4l5xBTDGjyb8s0
zmK22brb+T0v8RyAjT2qC0YWpB7I0CZQxxOCYc2GX0NFnXJ3b85n2wUnsLg0mB/l
WR/1HsJTOsgh1ZeRPtDSOzwdBKAGSuZkVxv8S+pmzEa044u0P4aHHroYMKJ4/5mz
JKcW9TcfG19uIc922i6cG0MXFA9+Hw/BxXSWxJaxwCBAmbn4GbFCfA5cOx9K7kur
R7kS6Sd5XQKaw6YIVfYAJqXObNVIsktMMHc5MSjvBXvzM96Ew8ufWl7MjGRfdMcY
1w7oN+FuueyVD6W2CkO/skvCxvCS5JFQo8sLJXpCUq0mOcnO+a2zxcB3w7A4C5Fg
k0Oo4bv6AMv3WSiHKFl9
=CvcG
-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/e1tqrhw-0002ib...@franck.debian.org



Accepted openafs 1.6.2~pre2-2 (source i386 all)

2013-01-03 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Jan 2013 12:06:41 -0800
Source: openafs
Binary: openafs-client openafs-fuse openafs-kpasswd openafs-fileserver 
openafs-dbserver openafs-doc openafs-krb5 libkopenafs1 libafsauthent1 
libafsrpc1 libopenafs-dev openafs-modules-source openafs-modules-dkms 
libpam-openafs-kaserver openafs-dbg
Architecture: source i386 all
Version: 1.6.2~pre2-2
Distribution: experimental
Urgency: low
Maintainer: Russ Allbery r...@debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 libafsauthent1 - AFS distributed file system runtime library (authentication)
 libafsrpc1 - AFS distributed file system runtime library (RPC layer)
 libkopenafs1 - AFS distributed file system runtime library (PAGs)
 libopenafs-dev - AFS distributed filesystem development libraries
 libpam-openafs-kaserver - AFS distributed filesystem kaserver PAM module
 openafs-client - AFS distributed filesystem client support
 openafs-dbg - AFS distributed filesystem debugging information
 openafs-dbserver - AFS distributed filesystem database server
 openafs-doc - AFS distributed filesystem documentation
 openafs-fileserver - AFS distributed filesystem file server
 openafs-fuse - AFS distributed file system experimental FUSE client
 openafs-kpasswd - AFS distributed filesystem old password changing
 openafs-krb5 - AFS distributed filesystem Kerberos 5 integration
 openafs-modules-dkms - AFS distributed filesystem kernel module DKMS source
 openafs-modules-source - AFS distributed filesystem kernel module source
Changes: 
 openafs (1.6.2~pre2-2) experimental; urgency=low
 .
   * Restore include of sys/param.h in userspace builds of rx/rx_packet.h
 to get a definition of MIN and MAX on, at least, powerpc.  Thanks,
 Andrew Deason.
Checksums-Sha1: 
 ae44e6c6213b78b4a12140d7e89bec4c05d5be16 2581 openafs_1.6.2~pre2-2.dsc
 7c866fb06c4c5078f8b0f9a410df5a6ba04fe14f 124232 
openafs_1.6.2~pre2-2.debian.tar.xz
 351426bd6d4449777eb5d5bdd8fb28d3c195076e 1953432 
openafs-client_1.6.2~pre2-2_i386.deb
 57635944e05cc89381fdc325bd771a6385f2a705 270280 
openafs-fuse_1.6.2~pre2-2_i386.deb
 af4b8d76dbc4d9d1078769d14c8c581e30300902 210576 
openafs-kpasswd_1.6.2~pre2-2_i386.deb
 c73bb79fa6d5899e8ab45179cafed441d565455b 1276644 
openafs-fileserver_1.6.2~pre2-2_i386.deb
 40d33a6473bd58b2ffe54769aab8e09c7594fb8e 393580 
openafs-dbserver_1.6.2~pre2-2_i386.deb
 32e2baf0af29850272cb7d02a6f41b2760f7e6d6 3947528 
openafs-doc_1.6.2~pre2-2_all.deb
 71b04c41ed71a05a9936215b41d28e2861c6b5d7 256614 
openafs-krb5_1.6.2~pre2-2_i386.deb
 b4a16fdba186704464373dcc06d1cd92c03ccbef 80510 
libkopenafs1_1.6.2~pre2-2_i386.deb
 9d74335f09cb2998c37f6c163a96be2082c0fb0f 142870 
libafsauthent1_1.6.2~pre2-2_i386.deb
 f4d4526484b343bea96fb61423aabe63570bb878 196760 
libafsrpc1_1.6.2~pre2-2_i386.deb
 bee39dcc9021eb15b3f9c37e15db2df489651179 1377192 
libopenafs-dev_1.6.2~pre2-2_i386.deb
 43a0c7bc9c4fceae4bb48bb775aaf8d4c33d2f1e 316 
openafs-modules-source_1.6.2~pre2-2_all.deb
 ae9afa315a79769b97929d9dccc7b6665ef444a4 916634 
openafs-modules-dkms_1.6.2~pre2-2_all.deb
 3667d661c65fd133e398a2f31586283d7404f569 188520 
libpam-openafs-kaserver_1.6.2~pre2-2_i386.deb
 21bcc5c60a1f84b41aa8e8a2aa6b616f0b0faf89 21918946 
openafs-dbg_1.6.2~pre2-2_i386.deb
Checksums-Sha256: 
 14db7f19c671754f0464a0728915ce0d4307d13912bed254e5046b6e553c704a 2581 
openafs_1.6.2~pre2-2.dsc
 d5656bae3aa15a21e76eac92d7f732a61ec79c86d8c0b838b95934591264f50d 124232 
openafs_1.6.2~pre2-2.debian.tar.xz
 6cf7b35e15553dfdf121652e4a05705530ba520f66b17344a213c27a9b9e3ab6 1953432 
openafs-client_1.6.2~pre2-2_i386.deb
 6f19e149204c8639550badeaac57784986f3d48071c72f62cae13123c3af476c 270280 
openafs-fuse_1.6.2~pre2-2_i386.deb
 b7ae9d344c5b5063121070fe803496f350602d0b207c2b47cda72bf3e0145a25 210576 
openafs-kpasswd_1.6.2~pre2-2_i386.deb
 54bdc47f737118a9b8f0ecd4758cc3aedff17f21297b5583bfee1243c3d4c60e 1276644 
openafs-fileserver_1.6.2~pre2-2_i386.deb
 9853215796d0f65b3070b05bd67f3919a10c298c35c7fc443c50443fa1f9e818 393580 
openafs-dbserver_1.6.2~pre2-2_i386.deb
 9fd911873223f70cf31de9bc35b18049347ddb3191a78e4a20770d59c0bf540d 3947528 
openafs-doc_1.6.2~pre2-2_all.deb
 514ccc72597f486e69f0f892fbeb3f2d96f91a6d3d0fb8ed63ecffb0badffb15 256614 
openafs-krb5_1.6.2~pre2-2_i386.deb
 a0e61fa6a3865550ffed3371b542d32e5fcd8a969249cee55f0993e67945961a 80510 
libkopenafs1_1.6.2~pre2-2_i386.deb
 fc8e9bf87ff02cd59d0e08dd76cb9eed6e4f5ef0e224067c60c240dab153b6ed 142870 
libafsauthent1_1.6.2~pre2-2_i386.deb
 7f3f4318317e50d56ec67b9944c564a365a479ecc7324acb0826367fdf1bd7ad 196760 
libafsrpc1_1.6.2~pre2-2_i386.deb
 cbcce95b956a1acf13cb9198ce3e203f5db2ad73a43e6a93e13f39c755c76add 1377192 
libopenafs-dev_1.6.2~pre2-2_i386.deb
 45a55ec4e0345998284a7ed757027b647d12ce731e2e121f3d8fa00ad977afd5 316 
openafs-modules-source_1.6.2~pre2-2_all.deb
 bfd287aaad95da6d8049524eb32d0a29d2aa42b1d2661654b807ed6752c8c938 916634 
openafs-modules-dkms_1.6.2~pre2-2_all.deb
 

Accepted ldap-git-backup 1.0.3-2 (source all)

2013-01-03 Thread Elmar S. Heeb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 15:07:33 +0100
Source: ldap-git-backup
Binary: ldap-git-backup
Architecture: source all
Version: 1.0.3-2
Distribution: unstable
Urgency: low
Maintainer: Elmar S. Heeb el...@heebs.ch
Changed-By: Elmar S. Heeb el...@heebs.ch
Description: 
 ldap-git-backup - Back up LDAP database in an Git repository
Changes: 
 ldap-git-backup (1.0.3-2) unstable; urgency=low
 .
   * clean up of Depends and Build-Depends
Checksums-Sha1: 
 db1e5dc72ce71c3043b78cdea1f9cfdb44557bc2 1328 ldap-git-backup_1.0.3-2.dsc
 bb896b184f87c96ea0772fdbf194773336f44b03 73433 
ldap-git-backup_1.0.3.orig.tar.gz
 e354d09d0431541f66a1be0a5a3027f579dd1b06 2493 
ldap-git-backup_1.0.3-2.debian.tar.gz
 e91ac02f0e7af303a78c4a790fe7313bceee8485 10628 ldap-git-backup_1.0.3-2_all.deb
Checksums-Sha256: 
 b88b0ad7c90253929bfff09d8b85fd12335cbd7b8d9a10ef2462b49d649725d1 1328 
ldap-git-backup_1.0.3-2.dsc
 fbe1004df74172ed029a4d13fa6f9f85c12cc5b612e871d233049021c00dbc36 73433 
ldap-git-backup_1.0.3.orig.tar.gz
 53570c14d0203f891646536d928e89add4be7ea2b2216a98b92d54a706dbb9fa 2493 
ldap-git-backup_1.0.3-2.debian.tar.gz
 c9aa3d6fe62d4448711794d700b1025f98592b883b380e74c00d1ce6a8a84244 10628 
ldap-git-backup_1.0.3-2_all.deb
Files: 
 0ee6df5d4a81d1637d7d28a8d8e8e1f3 1328 admin optional 
ldap-git-backup_1.0.3-2.dsc
 ba6e34b5ac461f372def723be084655f 73433 admin optional 
ldap-git-backup_1.0.3.orig.tar.gz
 27d70355207aa22d1da5e6792ef89f54 2493 admin optional 
ldap-git-backup_1.0.3-2.debian.tar.gz
 4becf73ff13eacc8ee94889d1d0ebb7e 10628 admin optional 
ldap-git-backup_1.0.3-2_all.deb

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

iEYEARECAAYFAlDl06UACgkQwJ4diZWTDt4+pgCcCSUJ9Z8CJTjgCD5R2I65KGPW
QGMAoIDwDQvIDUrhiRaASXiOi4q/ecEg
=P9k9
-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/e1tqrvn-0008dt...@franck.debian.org



Accepted logilab-common 0.58.3-1 (source all)

2013-01-03 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 21:42:27 +0100
Source: logilab-common
Binary: python-logilab-common python3-logilab-common
Architecture: source all
Version: 0.58.3-1
Distribution: experimental
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Sandro Tosi mo...@debian.org
Description: 
 python-logilab-common - useful miscellaneous modules used by Logilab projects
 python3-logilab-common - useful miscellaneous modules used by Logilab projects 
(Python3)
Changes: 
 logilab-common (0.58.3-1) experimental; urgency=low
 .
   * New upstream release
   * debian/copyright
 - extended packaging copyright years
Checksums-Sha1: 
 2a29f9c8b594ca9df4da7f8adf4875b9db41af13 1682 logilab-common_0.58.3-1.dsc
 da1c1b0ff9fd9f76166ef965209b29fa518b4503 194822 
logilab-common_0.58.3.orig.tar.gz
 cf83911a763b3fd9431563ca75213134955494df 8591 
logilab-common_0.58.3-1.debian.tar.gz
 d42bf7881acc1b12dea7edf5e2d8886c45a95d3b 721920 
python-logilab-common_0.58.3-1_all.deb
 67278ec0b2a99e5f1f06ffb9735a14448dda82ca 147828 
python3-logilab-common_0.58.3-1_all.deb
Checksums-Sha256: 
 a27994ed9b5e06bf84dd139123414bc6ce466e656680ac2c821d6980cece2742 1682 
logilab-common_0.58.3-1.dsc
 ad8c9cafe1dbbd54753694733562f39d4bbcb8467308fb64f7803dfe30ea5e86 194822 
logilab-common_0.58.3.orig.tar.gz
 75ad9bcdb11f2b6fc2bc9becfa6fc72af75b18b84acc9f53e8d7b33a5222 8591 
logilab-common_0.58.3-1.debian.tar.gz
 29fe6df1da472c365747d307b6324de79e3d29effdd6cd1cc57c059a702b985d 721920 
python-logilab-common_0.58.3-1_all.deb
 5e4045181cb9ccd99a67486d4bcc5b5e452a139e9994de95798e1856b8b77e28 147828 
python3-logilab-common_0.58.3-1_all.deb
Files: 
 b4c998b4af5001120d0e5a3f386a47e5 1682 python optional 
logilab-common_0.58.3-1.dsc
 d6ea36a311381de92b7d7de3ec69e018 194822 python optional 
logilab-common_0.58.3.orig.tar.gz
 33206aa158d7870ed3000762005c5e12 8591 python optional 
logilab-common_0.58.3-1.debian.tar.gz
 03efb411fd80ddc7ab7c2f67706122ae 721920 python optional 
python-logilab-common_0.58.3-1_all.deb
 1d7bc63b762a853aad48d48871bdc509 147828 python optional 
python3-logilab-common_0.58.3-1_all.deb

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

iEYEARECAAYFAlDl89cACgkQAukwV0RN2VDALACfQYtyexMjiNmUBQj0E1hwnDrr
0C0AoI68aZmBiXRCKze6mYIJTqrhoLBU
=gRmK
-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/e1tqsas-0002rj...@franck.debian.org



Accepted pcre3 1:8.31-2 (source i386)

2013-01-03 Thread Mark Baker
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 20:30:05 +
Source: pcre3
Binary: libpcre3 libpcre3-udeb libpcrecpp0 libpcre3-dev libpcre3-dbg pcregrep
Architecture: source i386
Version: 1:8.31-2
Distribution: unstable
Urgency: low
Maintainer: Mark Baker m...@mnb.org.uk
Changed-By: Mark Baker m...@mnb.org.uk
Description: 
 libpcre3   - Perl 5 Compatible Regular Expression Library - runtime files
 libpcre3-dbg - Perl 5 Compatible Regular Expression Library - debug symbols
 libpcre3-dev - Perl 5 Compatible Regular Expression Library - development files
 libpcre3-udeb - Perl 5 Compatible Regular Expression Library - runtime files 
(ude (udeb)
 libpcrecpp0 - Perl 5 Compatible Regular Expression Library - C++ runtime files
 pcregrep   - grep utility that uses perl 5 compatible regexes.
Closes: 696217
Changes: 
 pcre3 (1:8.31-2) unstable; urgency=low
 .
   * Build -dev package as Multi-arch: same. Thanks Steve Langasek / Ubuntu
 for the patch (Closes: 696217)
Checksums-Sha1: 
 a5241cbf9bf6dfbe4c57af55b3a3a13c601a7a78 1044 pcre3_8.31-2.dsc
 c5923f45bb3518cf05e7e98bb4abc618979d075a 15736 pcre3_8.31-2.debian.tar.gz
 cc327b5d339b5c926d2f6ef93c320f5db0782169 245652 libpcre3_8.31-2_i386.deb
 611beeb1f997652e4243dd29400e300d3ba8f5f2 93734 libpcre3-udeb_8.31-2_i386.udeb
 2b44f76ae19dbadbc3e754e4df3b090ee2232148 128574 libpcrecpp0_8.31-2_i386.deb
 c89f9b3fed7262bb24138c3e89ce3d0364a145ef 351202 libpcre3-dev_8.31-2_i386.deb
 b2717858eb3d6cf1245bfbfe333edec256a01a3c 285016 libpcre3-dbg_8.31-2_i386.deb
 99870c95a37e2017a024ded508a8d928b8e596ab 26092 pcregrep_8.31-2_i386.deb
Checksums-Sha256: 
 bcbf6b228327917298d691ca21279b6601e045eac893f76fa10a8217564a6150 1044 
pcre3_8.31-2.dsc
 750062b4c6d9046752c424ba30d93ee7a6332a35384a8f453eeb5b806f380b36 15736 
pcre3_8.31-2.debian.tar.gz
 f58f507df28ea5511b789913a6ccf583e025a90b30376b94172899bb0cd666d5 245652 
libpcre3_8.31-2_i386.deb
 d5db3e4ce80268acab2a4f7d063dc60534a86984ca37e4b6a01e8bd7efa7bbd3 93734 
libpcre3-udeb_8.31-2_i386.udeb
 47e08bd527b157dbdae67c722b0eeb2c4c06b1ece0c94c9883ad9b945c157562 128574 
libpcrecpp0_8.31-2_i386.deb
 e896933f6fd72eeb4219a0bfefbdc2561d9119b067ba604ff2ac5b6e6f3bd81e 351202 
libpcre3-dev_8.31-2_i386.deb
 e09bbf490e20523e062e1076954bf44d2ede7209218d43ee667d3ff0a859f8dd 285016 
libpcre3-dbg_8.31-2_i386.deb
 9d8840dd7b17f4a8e1eeba55f5885073a042b7e0140034d2c47f294f03a3c612 26092 
pcregrep_8.31-2_i386.deb
Files: 
 c0763145e71718e71bdd9a2e40a6a2f4 1044 libs optional pcre3_8.31-2.dsc
 17b4c523241fa46bbb1a0faa519c2f19 15736 libs optional pcre3_8.31-2.debian.tar.gz
 ff502368680b7c76da77d80d0ed7240c 245652 libs important libpcre3_8.31-2_i386.deb
 a26e932439c55bfc21cdcaafa8d35885 93734 debian-installer important 
libpcre3-udeb_8.31-2_i386.udeb
 c7f39b651cc6c8242f3b041813166edb 128574 libs optional 
libpcrecpp0_8.31-2_i386.deb
 e95ed4b1d4d9cca279a26c5a91da8665 351202 libdevel optional 
libpcre3-dev_8.31-2_i386.deb
 e5c07d96a9cc96f57daed79aeeb46d44 285016 debug extra 
libpcre3-dbg_8.31-2_i386.deb
 dc4e66eb5c901b467701741577021191 26092 utils optional pcregrep_8.31-2_i386.deb

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

iEYEARECAAYFAlDl8CEACgkQLk+GuosNQvnq1gCfQqoDy0GS3KGWoXHizQwolhum
QpwAn3Mn9CYK45RiiCeFu05B3BhiQw78
=1evH
-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/e1tqsac-00033o...@franck.debian.org



Accepted fwsnort 1.6.3-1 (source all)

2013-01-03 Thread Franck Joncourt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 23 Dec 2012 18:14:04 +0100
Source: fwsnort
Binary: fwsnort
Architecture: source all
Version: 1.6.3-1
Distribution: unstable
Urgency: low
Maintainer: Franck Joncourt fra...@debian.org
Changed-By: Franck Joncourt fra...@debian.org
Description: 
 fwsnort- Snort-to-iptables rule translator
Closes: 693000 693362
Changes: 
 fwsnort (1.6.3-1) unstable; urgency=low
 .
   * New po-debconf translation - Brazilian Portuguese (Closes: #693362)
   * Imported Upstream version 1.6.3
 - Closes: #693000
 - Fixed hyphens in manpage. Removed t_upstream_manpage.diff patch.
Checksums-Sha1: 
 4ab11a9263e4eaf87a72370c3017fb830247a748 1219 fwsnort_1.6.3-1.dsc
 faa2615a3e1b2a801b6750880ca0715796ea025d 96740 fwsnort_1.6.3.orig.tar.gz
 a7da22e0a68bdd2d1673fe1ffae1e187d48d1ab1 7579 fwsnort_1.6.3-1.debian.tar.gz
 c5241c343319fa74c423c837f77dd790fe9adb2b 69078 fwsnort_1.6.3-1_all.deb
Checksums-Sha256: 
 a208e8533b434d253adca10662d13152de87bbd829ac1666c9f575416572d7a8 1219 
fwsnort_1.6.3-1.dsc
 d2110508f61c31d5ca5ddbb2452d0b10ae533e094499bc287f3382371c8bd5f2 96740 
fwsnort_1.6.3.orig.tar.gz
 c61ca7f78dc120aa981ddbb9077aaf317d979df15ef9e92b2afcf1af0e990dbe 7579 
fwsnort_1.6.3-1.debian.tar.gz
 71ded4ae4bc1d7123cf023e277364baf0b3595b812780329cfe8375eaa6c0b39 69078 
fwsnort_1.6.3-1_all.deb
Files: 
 e5fe780ee98319599d383ecc4c4db005 1219 admin optional fwsnort_1.6.3-1.dsc
 7a61a03c4b523b4fb2b1cc73bcb3bac7 96740 admin optional fwsnort_1.6.3.orig.tar.gz
 b0e9570892f2ef02007acb476fcb7700 7579 admin optional 
fwsnort_1.6.3-1.debian.tar.gz
 15874e7f461c4db4ee925674c873d6ae 69078 admin optional fwsnort_1.6.3-1_all.deb

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

iEYEARECAAYFAlDl9qEACgkQxJBTTnXAif5GtQCfcIsrlrAyPzcNrYbpVZ8OJ4qk
CkkAn3mK8b6Xjk2zw6eOZnlTMt3C9ErR
=k044
-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/e1tqsoq-0005oa...@franck.debian.org



Accepted nmap 6.00-0.3 (source amd64)

2013-01-03 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 29 Dec 2012 18:43:12 +0100
Source: nmap
Binary: nmap zenmap
Architecture: source amd64
Version: 6.00-0.3
Distribution: unstable
Urgency: low
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description: 
 nmap   - The Network Mapper
 zenmap - The Network Mapper Front End
Closes: 696446
Changes: 
 nmap (6.00-0.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Apply upstream fix for interfaces in monitor mode (Closes: #696446).
Checksums-Sha1: 
 1490f650970d2b4102909e4a62e39f21a8feb477 1282 nmap_6.00-0.3.dsc
 ff0ab73af635838f99f902715fed8808a0073e44 25873 nmap_6.00-0.3.diff.gz
 2846cd8d3c1cfd190735542d48f554d446ef4f91 3717838 nmap_6.00-0.3_amd64.deb
 0670894001e8ed82fbb22c122ea8c24ccfac429a 548458 zenmap_6.00-0.3_amd64.deb
Checksums-Sha256: 
 857e29f89ef381d898dd8fd1f0e3e6caa0aed4ead041a7e16d8def6e3ee54ede 1282 
nmap_6.00-0.3.dsc
 b1967104677fcae726d956c806fe9db421bc0843461c484d7878dff51ea20d25 25873 
nmap_6.00-0.3.diff.gz
 0b2a3f3650983a3ed5db6965dbf85ff076534d3c7595a8680d791866549f05c5 3717838 
nmap_6.00-0.3_amd64.deb
 4a25a92532d6875ccb156c0495d33bbfcc39f74bd665e856248b41c9952174ee 548458 
zenmap_6.00-0.3_amd64.deb
Files: 
 a8b2c34b0dcfaddb46a7aa0e7f8c418f 1282 net extra nmap_6.00-0.3.dsc
 0ce5c0ea2ed19f9faad5f4b2f7a79457 25873 net extra nmap_6.00-0.3.diff.gz
 cd197ed6ac665207e639975c2016bded 3717838 net extra nmap_6.00-0.3_amd64.deb
 2f018b0377c9af1217889c3df18b8f22 548458 net extra zenmap_6.00-0.3_amd64.deb

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

iEYEARECAAYFAlDfWdAACgkQUCgnLz/SlGhxBwCfY73mMG9kVIQ4YZlCt0lHjIyf
jvIAnje8KBN8EB5Oikw83kaM7MMXy30f
=7v49
-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/e1tqspe-0005ve...@franck.debian.org



Accepted tarantool 1.4.8+20130104-1 (source all amd64)

2013-01-03 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Fri, 04 Jan 2013 01:29:54 +0400
Source: tarantool
Binary: tarantool-common tarantool tarantool-dbg tarantool-client 
tarantool-client-dbg libtarantool1 libtarantool1-dbg libtarantool-dev 
libtarantoolnet1 libtarantoolnet1-dbg libtarantoolsql1 libtarantoolsql1-dbg 
libtarantoolrpl1 libtarantoolrpl1-dbg
Architecture: source all amd64
Version: 1.4.8+20130104-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 libtarantool-dev - high performance key/value storage server
 libtarantool1 - high performance key/value storage server
 libtarantool1-dbg - high performance key/value storage server
 libtarantoolnet1 - high performance key/value storage server
 libtarantoolnet1-dbg - high performance key/value storage server
 libtarantoolrpl1 - high performance key/value storage server
 libtarantoolrpl1-dbg - high performance key/value storage server
 libtarantoolsql1 - high performance key/value storage server
 libtarantoolsql1-dbg - high performance key/value storage server
 tarantool  - high performance key/value storage server
 tarantool-client - high performance key/value storage server
 tarantool-client-dbg - high performance key/value storage server
 tarantool-common - high performance key/value storage server
 tarantool-dbg - high performance key/value storage server
Changes: 
 tarantool (1.4.8+20130104-1) unstable; urgency=low
 .
   * New snapshot (segfault in tree iterator).
Checksums-Sha1: 
 d31096376a8cd060d2aef2f2975c20867537eb00 2195 tarantool_1.4.8+20130104-1.dsc
 2ad18bde7352957ca6abef6ae1b9bba3a3101c68 2644343 
tarantool_1.4.8+20130104.orig.tar.gz
 20eba2116eb0dfda42a14d881642a4b322d594ab 13970 
tarantool_1.4.8+20130104-1.debian.tar.gz
 6d94d16f24feb36a87648713b0f4ff8e50788e87 21874 
tarantool-common_1.4.8+20130104-1_all.deb
 babd3c23a4588a30d2c0df209a1509dc22c2815d 501340 
tarantool_1.4.8+20130104-1_amd64.deb
 cc9ea85d35f45980ff9d1be4bccbd0a3e7f4f366 208258 
tarantool-dbg_1.4.8+20130104-1_amd64.deb
 036611e882ade5abd31d47835de505e10f2f0574 57308 
tarantool-client_1.4.8+20130104-1_amd64.deb
 33aa6d1f18aaf6fff3f78d3f0cffb80ac2d8e186 112736 
tarantool-client-dbg_1.4.8+20130104-1_amd64.deb
 03190b0018533f644fbdb502eb1fb5e91fc88156 20686 
libtarantool1_1.4.8+20130104-1_amd64.deb
 d9ad9de548d50db4ffc6e5017b8f5ab03ff67ba0 36034 
libtarantool1-dbg_1.4.8+20130104-1_amd64.deb
 ab2f6b871be6ad731d6e49f0815329b31d55e16d 59990 
libtarantool-dev_1.4.8+20130104-1_amd64.deb
 e6df975bd5699203983004bae97e04181883d57c 16934 
libtarantoolnet1_1.4.8+20130104-1_amd64.deb
 2f38c0115b8d6f7fba8d85932fc8ceea54327234 27146 
libtarantoolnet1-dbg_1.4.8+20130104-1_amd64.deb
 089db401e750d735a26a3f3f7c43284caaad778d 18232 
libtarantoolsql1_1.4.8+20130104-1_amd64.deb
 36d3f19b4138c1a1f62995670da5de289f4f6413 29156 
libtarantoolsql1-dbg_1.4.8+20130104-1_amd64.deb
 c399004c8140683f5aa4f4773092b0c04237d3f9 26938 
libtarantoolrpl1_1.4.8+20130104-1_amd64.deb
 c814c22440635a82d6a89f41ebe75727775cce54 29176 
libtarantoolrpl1-dbg_1.4.8+20130104-1_amd64.deb
Checksums-Sha256: 
 e41511c7efa1a346730ba9d6904cd45ce2392de14f35696c1c03d07a1446f14b 2195 
tarantool_1.4.8+20130104-1.dsc
 24d21cdc3025cf4f1ebf02ac9b58429201c82595eb3443e5f7c3a4e52672b04a 2644343 
tarantool_1.4.8+20130104.orig.tar.gz
 03ed2ca0bc00fb708e2a33927e28e08d901e5074a1d159e25673ce233699a956 13970 
tarantool_1.4.8+20130104-1.debian.tar.gz
 70878f84d169181898463d9235557036d0b8ae982a45e62db1dbd4d088f8cb48 21874 
tarantool-common_1.4.8+20130104-1_all.deb
 1b9f4bdeae26cb1da0cd57f52cc72f6ea4db519c5ce2fcd2920ccaffdbc7d7f9 501340 
tarantool_1.4.8+20130104-1_amd64.deb
 85a5a357d886cd775db0fed5304247c4e2583798b208b0fe6141ed5de0f7189b 208258 
tarantool-dbg_1.4.8+20130104-1_amd64.deb
 f1b5f0921c32985a58e83b9966acffe9d9886b908ef237305d99a01b9d402dc9 57308 
tarantool-client_1.4.8+20130104-1_amd64.deb
 f844e606357815e338e1cdc68f974c6e84408631f63350851d0fdc5958b8d3f0 112736 
tarantool-client-dbg_1.4.8+20130104-1_amd64.deb
 b1cd25d2b69b36d333f784502516ceba49f348aa29ec1e4369e9794f21c3a9ea 20686 
libtarantool1_1.4.8+20130104-1_amd64.deb
 7ba9f29f1948642c575a1801706bd6614c82fb7dd9dafe12d8d873023ba30289 36034 
libtarantool1-dbg_1.4.8+20130104-1_amd64.deb
 c0c26c99f95ab3b9e7d9722f1f882f6b9b7443f124de104ed6d41c56aa6a4995 59990 
libtarantool-dev_1.4.8+20130104-1_amd64.deb
 a47edaa3d4ef44bf4238a5c7e6dbe1a2b3dd663d48df02caadbb3c9817a2b85f 16934 
libtarantoolnet1_1.4.8+20130104-1_amd64.deb
 048c3d53f6805a5f9920ff695ef46247e59862dabc1b0033b19ea6702719a615 27146 
libtarantoolnet1-dbg_1.4.8+20130104-1_amd64.deb
 b60aaf425db0cdf3ca39d4e490b8554c7d674ea4d82cc95d5ea1fd0cc600e0b3 18232 
libtarantoolsql1_1.4.8+20130104-1_amd64.deb
 28317bba68c29e8b708646fba403a9348be7d28d308aae3e5bf408ce4e2803f5 29156 
libtarantoolsql1-dbg_1.4.8+20130104-1_amd64.deb
 0969349e47e46786ad6b8e5ea2d3c7b18803f15325f7d72a5af24d60adfaa305 26938 

Accepted twisted 12.3.0-1 (source all i386)

2013-01-03 Thread Free Ekanayaka
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 02 Jan 2013 15:15:18 +0100
Source: twisted
Binary: python-twisted-core python-twisted-bin python-twisted-bin-dbg 
twisted-doc python-twisted
Architecture: source all i386
Version: 12.3.0-1
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Free Ekanayaka fr...@debian.org
Description: 
 python-twisted - Event-based framework for internet applications (dependency 
packa
 python-twisted-bin - Event-based framework for internet applications
 python-twisted-bin-dbg - Event-based framework for internet applications 
(debug extension)
 python-twisted-core - Event-based framework for internet applications
 twisted-doc - Official documentation of Twisted
Changes: 
 twisted (12.3.0-1) experimental; urgency=low
 .
   * New upstream release
   * Bump python-zope.interface dependency to 3.6
   * Bump Standards-Version to 3.9.4
   * Install _initgroups.so only on Python = 2.6
   * Drop packaging tweaks for Python  2.6
Checksums-Sha1: 
 fc849cd7dfe69104e528d1f6deed389a6de2017a 1454 twisted_12.3.0-1.dsc
 fe290e1cfac46df51d9354bf696e052ad584ab4f 1480622 twisted_12.3.0.orig.tar.bz2
 5b14b36539e34b8426b5efb62cbddab95f69b3a5 12682 twisted_12.3.0-1.debian.tar.gz
 a874c3a456884f6250fdb2be3af701c76c1c046f 1325728 
python-twisted-core_12.3.0-1_all.deb
 5f0b0c301bac5ee7b63b384b9d9426408286068b 515670 twisted-doc_12.3.0-1_all.deb
 8d0e363e286cb6f8b8142dd44ae34ae149006a7c 11064 python-twisted_12.3.0-1_all.deb
 930cb0b4f5151b79d80f27c458e0d5f0ffa60e80 22498 
python-twisted-bin_12.3.0-1_i386.deb
 9e09ba247effe9331ce4dba28a7c835fed3c0a09 94934 
python-twisted-bin-dbg_12.3.0-1_i386.deb
Checksums-Sha256: 
 1909c38dd80f4cc99379a49cb907cc185716d50cd080ee59ff3300ba64c580eb 1454 
twisted_12.3.0-1.dsc
 343dd7372b05d4aa0805406bcbee7db40514b6bb48aa2840e0e56d88a8970900 1480622 
twisted_12.3.0.orig.tar.bz2
 01e2e0b16d9a3dbf8b4f7926badf419f3eb4433c5762f37cd20712a28253e96d 12682 
twisted_12.3.0-1.debian.tar.gz
 6422eaeda4113365d32cfaf255e922949594f1a6e247736c85ada21325ed1c01 1325728 
python-twisted-core_12.3.0-1_all.deb
 da74ec2eb773446a27f1085ef1e4c2ad68615d54c04fbfebbf528233881c1644 515670 
twisted-doc_12.3.0-1_all.deb
 ce038a4c6bb22942dbfe502ba4c617004e0ccb87af0d4c5a0a1826f6266b66b5 11064 
python-twisted_12.3.0-1_all.deb
 19d41f5f949f358bb4152d08d5f87d45a7a7806834e60e3ccf4468c8e51ab4d6 22498 
python-twisted-bin_12.3.0-1_i386.deb
 65802562fec70ef3b238ebf872b04f7ff43e95c4e29baae3f33ce059e026a32e 94934 
python-twisted-bin-dbg_12.3.0-1_i386.deb
Files: 
 0b800f4dd82b1fdafc2c5e426e37cc2c 1454 python optional twisted_12.3.0-1.dsc
 95e3fa899250003c74b8995154cc7421 1480622 python optional 
twisted_12.3.0.orig.tar.bz2
 327c18dcaa8da9be5393f4f657ba9304 12682 python optional 
twisted_12.3.0-1.debian.tar.gz
 715884fdde2d3b9d96966f4e9da984e4 1325728 python optional 
python-twisted-core_12.3.0-1_all.deb
 51a0b2eceb9745f83bf65fb245728c39 515670 doc extra twisted-doc_12.3.0-1_all.deb
 fe779ec589e53c53e40341fcc0582129 11064 python extra 
python-twisted_12.3.0-1_all.deb
 3057ec74556d4eb389bf2bd52c9ccfee 22498 python optional 
python-twisted-bin_12.3.0-1_i386.deb
 5c914bd1119bf3cbdfce8aead09e3c64 94934 debug extra 
python-twisted-bin-dbg_12.3.0-1_i386.deb

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

iEYEARECAAYFAlDl+HoACgkQcanJGlcVnlkb5QCeOY1XR882TbYal0neuj2M3lJu
8FYAoKCApSlc/z/mkCdgWS1TflpfmboI
=lO+B
-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/e1tqses-0001w6...@franck.debian.org



Accepted uicilibris 1.11-1 (source all)

2013-01-03 Thread Georges Khaznadar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 01 Jan 2013 13:34:19 +0100
Source: uicilibris
Binary: uicilibris
Architecture: source all
Version: 1.11-1
Distribution: unstable
Urgency: low
Maintainer: Georges Khaznadar georg...@debian.org
Changed-By: Georges Khaznadar georg...@debian.org
Description: 
 uicilibris - convert mediawiki contents to a printable book
Changes: 
 uicilibris (1.11-1) unstable; urgency=low
 .
   * repaired the management of source code in wiki pages
   * implemented management for minted LaTeX exports; supported attributes
 are lang and line.
Checksums-Sha1: 
 b28805afc0b9de41a033acf639684de76dfee91d 1129 uicilibris_1.11-1.dsc
 1717ebfc19da889a9879332e4e6dba6b6f8a5285 5105903 uicilibris_1.11.orig.tar.gz
 a15c97dff366fa8e4d4dec47e3eee04dfda3811b 3724 uicilibris_1.11-1.debian.tar.gz
 27c1587f0a8fbb9dea17e0c6c9a587c5f3effb03 379670 uicilibris_1.11-1_all.deb
Checksums-Sha256: 
 e6547febf0bb307d91fd02cbc93dbfee9431a7720d3e040f556c24fb58adf8a7 1129 
uicilibris_1.11-1.dsc
 0c6530ff7b9eeb026230cbc34ecdc78103c7bbebdb0e52e397ffa3f1d971 5105903 
uicilibris_1.11.orig.tar.gz
 0028f3518340861ce79bf6cda99fe7a530b433f2e8cde0ee4ebded0c9866bba3 3724 
uicilibris_1.11-1.debian.tar.gz
 1040b30b22526161265407acef87beb532f57d9a1bd740a3f52fe76125292eee 379670 
uicilibris_1.11-1_all.deb
Files: 
 05e83582ab5b7f8d8937daad0aa8f6db 1129 tex extra uicilibris_1.11-1.dsc
 4f631982bb96658f673a3fda7312bf72 5105903 tex extra uicilibris_1.11.orig.tar.gz
 0ed20ba88dd6236686b830e99fb12284 3724 tex extra uicilibris_1.11-1.debian.tar.gz
 c5468201577bf878d67ff4509764daa4 379670 tex extra uicilibris_1.11-1_all.deb

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

iD8DBQFQ5fTdnfmb2hFpETARAlPYAJ9GPz7OHwL+GKREpl7fNL7P9JBsBACdHl72
A9IqzXqbnJhq2B4+nVP8H4g=
=ST4N
-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/e1tqsez-0001yz...@franck.debian.org



Accepted xmonad 0.11-1 (source all amd64)

2013-01-03 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 21:15:16 +0100
Source: xmonad
Binary: xmonad libghc-xmonad-dev libghc-xmonad-prof libghc-xmonad-doc
Architecture: source all amd64
Version: 0.11-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-xmonad-dev - Lightweight X11 window manager; libraries
 libghc-xmonad-doc - Lightweight X11 window manager; documentation
 libghc-xmonad-prof - Lightweight X11 window manager; profiling libraries
 xmonad - Lightweight X11 window manager written in Haskell
Changes: 
 xmonad (0.11-1) experimental; urgency=low
 .
   [ Joachim Breitner ]
   * Change VCS fields back to regular
   * New upstream release
 .
   [ Ryan Kavanagh ]
   * Don't run GenerateManpage with runghc at build time, fixes FTBFS on
 architectures without ghci.
   * Build-depend on libghc-extensible-exceptions-* now that it's no longer
 bundled in ghc
 .
   [ Joachim Breitner ]
   * Work around a pandoc data file mismatch (#697306) by forcing the pandoc
 build dependency to come from experimental
Checksums-Sha1: 
 227866b79681687a0719a86c6316defdb67bcd40 1965 xmonad_0.11-1.dsc
 9ab0c44283812a0a1883ae975221e72d17c4decb 59119 xmonad_0.11.orig.tar.gz
 1146dcbc7dc74cc21c9e0e89863ab9d8af9d7025 11392 xmonad_0.11-1.debian.tar.gz
 f087829a695723fe37d95a212921e28d7b2167f4 208598 
libghc-xmonad-doc_0.11-1_all.deb
 c3d4a7de9aeff68eb7d88367e68fdd8dc246716f 597626 xmonad_0.11-1_amd64.deb
 5833535b82b0e6f96a086301d63a68cf5de4aa8e 546386 
libghc-xmonad-dev_0.11-1_amd64.deb
 65ca1201556686c424bbdfe3dc3b73b5339f22c0 723278 
libghc-xmonad-prof_0.11-1_amd64.deb
Checksums-Sha256: 
 a0924694376b843e1efded8b8bc1f825ac12eeccf881395205c4cd13a343b7f9 1965 
xmonad_0.11-1.dsc
 e5bd36d5184facad66acf2688b02922bfc6de32b576758f4b00688253c425bdb 59119 
xmonad_0.11.orig.tar.gz
 af260c87ff33a676ac9426ace87b2394bd7bdaaa2534577c59758a048efe0262 11392 
xmonad_0.11-1.debian.tar.gz
 3d44bb833143f4fa0077fcc8e4c97875f5667f0394e6581a555d207531a9127c 208598 
libghc-xmonad-doc_0.11-1_all.deb
 7fa1f76db02220660cc098069f4aeb2052e4cd5ff1d0b2c6b0a944431d74a423 597626 
xmonad_0.11-1_amd64.deb
 2224600b3dc87cdda77a073830f72fd42f39055e6a5b7dbbb75baf05fab989b7 546386 
libghc-xmonad-dev_0.11-1_amd64.deb
 e9e49312a4684022cb22191516511d7cf4656bc7ae5d1f515ccab4ce74ac81c5 723278 
libghc-xmonad-prof_0.11-1_amd64.deb
Files: 
 1e587557af5c7d2dd6586a420433d943 1965 haskell extra xmonad_0.11-1.dsc
 5ac9dc1dae5e85dcbdfb9f70cbe312c1 59119 haskell extra xmonad_0.11.orig.tar.gz
 4404304a566fadc7a54e34d5203cef96 11392 haskell extra 
xmonad_0.11-1.debian.tar.gz
 d3fff72941c89bcd1bcb34ca3a37edf8 208598 doc extra 
libghc-xmonad-doc_0.11-1_all.deb
 32c17c1e54dcf85644409b8c5117b551 597626 x11 extra xmonad_0.11-1_amd64.deb
 fa15a727fbf36f8b3c737a3e930ff231 546386 haskell extra 
libghc-xmonad-dev_0.11-1_amd64.deb
 461236b1de5c99a647e0b09c6af86c66 723278 haskell extra 
libghc-xmonad-prof_0.11-1_amd64.deb

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

iEUEARECAAYFAlDmAAcACgkQ9ijrk0dDIGwcBgCeNEMBI2d5hunA51sSLST1Yxao
B3UAl2Rfg048Q8qJHQh/LLds+xYMNQI=
=i7kC
-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/e1tqt6x-0008j1...@franck.debian.org



Accepted xmonad-contrib 0.11-1 (source all amd64)

2013-01-03 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 01 Jan 2013 16:35:33 +0100
Source: xmonad-contrib
Binary: libghc-xmonad-contrib-dev libghc-xmonad-contrib-prof 
libghc-xmonad-contrib-doc
Architecture: source all amd64
Version: 0.11-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 libghc-xmonad-contrib-dev - Extensions to xmonad
 libghc-xmonad-contrib-doc - Extensions to xmonad; documentation
 libghc-xmonad-contrib-prof - Extensions to xmonad; profiling libraries
Changes: 
 xmonad-contrib (0.11-1) experimental; urgency=low
 .
   * Change VCS fields back to regular
   * New upstream release
Checksums-Sha1: 
 8bfb4e6d3e6660489748bd47edebe3a5c335a1a9 2081 xmonad-contrib_0.11-1.dsc
 0d961101834d5c6f97cbb8282810db791ab1cc94 402567 xmonad-contrib_0.11.orig.tar.gz
 b8539db2978992bd96bdbf836547b8f514ea07dd 8686 
xmonad-contrib_0.11-1.debian.tar.gz
 6a2493e7bed0995b4ac12979df4a94380c4803a0 1439162 
libghc-xmonad-contrib-doc_0.11-1_all.deb
 f92efb565cd48e45ffd25a4956f197cfc5d8f442 5686830 
libghc-xmonad-contrib-dev_0.11-1_amd64.deb
 d4bb24f859536096b3dd388effef816ef52539dc 5914854 
libghc-xmonad-contrib-prof_0.11-1_amd64.deb
Checksums-Sha256: 
 43f9ca76d1975c9728c12f4f115182eba360c2e34c05fdc5e192d4ee23d966bc 2081 
xmonad-contrib_0.11-1.dsc
 40cf6f0b895d609165a0ddc9d6e34255ab6b39418248215aaf7c2c13b4cf0ba1 402567 
xmonad-contrib_0.11.orig.tar.gz
 5ba63bbf224c29e3ae472aca6c30d61a112d7c4cff074088369f20a482d4db69 8686 
xmonad-contrib_0.11-1.debian.tar.gz
 10b7a256d3a28fb8a254c6f865d063e2e9d35706381dcb7b5941d2a904729080 1439162 
libghc-xmonad-contrib-doc_0.11-1_all.deb
 bd2ff739573e265c4f66bf2f57262de2e932ffd5d8729cbb76594845a7c45200 5686830 
libghc-xmonad-contrib-dev_0.11-1_amd64.deb
 8067ab4f9b8faca8446e50be61607baa6d59e7960206fe16a567b74afe3f2155 5914854 
libghc-xmonad-contrib-prof_0.11-1_amd64.deb
Files: 
 6abe016bfd30cb630f0fec3689adc5d9 2081 haskell extra xmonad-contrib_0.11-1.dsc
 05fba258ac6063e49b50786a0869bd1f 402567 haskell extra 
xmonad-contrib_0.11.orig.tar.gz
 388558f49effbe5921d65184093a0226 8686 haskell extra 
xmonad-contrib_0.11-1.debian.tar.gz
 b1c3d9b0f86998611cd515576eefeb22 1439162 doc extra 
libghc-xmonad-contrib-doc_0.11-1_all.deb
 21ae3a58cc5a680b319a832063be48b0 5686830 haskell extra 
libghc-xmonad-contrib-dev_0.11-1_amd64.deb
 c24e3a4f6460a0d7f055dead13a43f80 5914854 haskell extra 
libghc-xmonad-contrib-prof_0.11-1_amd64.deb

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

iEYEARECAAYFAlDmABQACgkQ9ijrk0dDIGzfIwCeLP8cKJ8Td4tKn/oRBDnN4tDc
w4wAoM6xwFxkCnWN3GJCuWGVSGSF4pbv
=Nd3g
-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/e1tqt76-0008ot...@franck.debian.org



Accepted bluetile 0.6-2 (source amd64)

2013-01-03 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 23:03:42 +0100
Source: bluetile
Binary: bluetile
Architecture: source amd64
Version: 0.6-2
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 bluetile   - full-featured tiling for the GNOME desktop environment
Changes: 
 bluetile (0.6-2) experimental; urgency=low
 .
   * Depend on haskell-devscripts 0.8.13 to ensure this packages is built
 against experimental
   * Bump standards version, no change
Checksums-Sha1: 
 eb33de5e01c6029a5f04a414e622d96365d7f33c 1540 bluetile_0.6-2.dsc
 fd374c7eb5ce6d4b36718dfa22f25b3d5087ac3f 3646 bluetile_0.6-2.debian.tar.gz
 f442c587890c79c5ec5d4a0dbb9dd2849db6a78b 3394886 bluetile_0.6-2_amd64.deb
Checksums-Sha256: 
 f1d29b72f9770c53b35c0d840b4c9f5fe7f252636bc2247b45c8d07944a48a88 1540 
bluetile_0.6-2.dsc
 eedf1119fb29882ef124969ea7d71be703fc57356f810dc27599524a205140c8 3646 
bluetile_0.6-2.debian.tar.gz
 194e870acdcc81160ea74869fe3c79d023cf3f7066a35723b40305398e72be0b 3394886 
bluetile_0.6-2_amd64.deb
Files: 
 61444974bdaef37d6b4573f35aade66f 1540 x11 optional bluetile_0.6-2.dsc
 01a40953a837537496cf62c1786f47a8 3646 x11 optional bluetile_0.6-2.debian.tar.gz
 914971c146b1f534c14ac108144f066f 3394886 x11 optional bluetile_0.6-2_amd64.deb

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

iEYEARECAAYFAlDmBWoACgkQ9ijrk0dDIGzQXgCgnVG8T7+QOQEUM8p65EPoNvkJ
ZNIAoJMOIb3hrEZEciihpNPJvJIVyi2k
=mgQU
-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/e1tqtkw-000573...@franck.debian.org



Accepted psad 2.2.1-1 (source amd64)

2013-01-03 Thread Franck Joncourt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 22:38:09 +0100
Source: psad
Binary: psad
Architecture: source amd64
Version: 2.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Franck Joncourt fra...@debian.org
Changed-By: Franck Joncourt fra...@debian.org
Description: 
 psad   - Port Scan Attack Detector
Changes: 
 psad (2.2.1-1) unstable; urgency=low
 .
   * Acknowledged NMU (2.2-3.1).
   * d.rules : do not install the kmsgd daemon anymore since it is not
 used anymore.
   * Allowed the makefile to use the hardening flags :
 - d.rules : added the hardening stanza
 - fixes_build.diff : updated the Makefile to use the CFLAGS, CPPFLAGS
   and LDFLAGS.
 - d.control : Added BD on dpkg-dev (= 1.16.1~)
   * Imported Upstream version 2.2.1
 - Removed applied patch t_upstream_hyphen.diff.
   * Bumped up Standards-Version to 3.9.4:
 - Added dependency ind.control against initscripts (= 2.88dsf-13.3)
   to ensure the run directory is available.
   * d.control: Removed BD against lsb-base.
Checksums-Sha1: 
 30af188d9c3d101262029e03f6204c807ea5 1221 psad_2.2.1-1.dsc
 0f9838f6388fc8ef49bb8806e372f10bef64f4b3 384384 psad_2.2.1.orig.tar.gz
 1febff5473142cedd7ec080fd8fa274c1b0725f3 12875 psad_2.2.1-1.debian.tar.gz
 2c9e48bba1856bf2af81aa6c2cc92e1c750abd5c 200634 psad_2.2.1-1_amd64.deb
Checksums-Sha256: 
 c6d4ed5b225b4d72c4128c61b62d96a8107a7e1f333ee8155a53a4df5bc53f5c 1221 
psad_2.2.1-1.dsc
 0422cdd1a37d4c8fcc1a4ce6e7c4a6974e58fdde82242f45b83eb6beb85708b5 384384 
psad_2.2.1.orig.tar.gz
 f0aa29db54831bd943647001d8a05cbe1042316b3f199ed1af4a8b5ab0f1f443 12875 
psad_2.2.1-1.debian.tar.gz
 b05a4d88ec48b42bb74e38ee57a3d5d10a706ccab290a036c457299eb45c4232 200634 
psad_2.2.1-1_amd64.deb
Files: 
 da005c1c50b81069182a5b3989c721a7 1221 admin optional psad_2.2.1-1.dsc
 ee600d9b6b4b915b026370c9a3726b5f 384384 admin optional psad_2.2.1.orig.tar.gz
 ad4121ea01575ec75a03d36b5922ed1b 12875 admin optional 
psad_2.2.1-1.debian.tar.gz
 9355c6f4d57c84824b7e4674edc033ef 200634 admin optional psad_2.2.1-1_amd64.deb

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

iEYEARECAAYFAlDmBIcACgkQxJBTTnXAif4AbACfRhpsHFduiPLXzJ7nrbbLL7ly
yPUAoKyCotsQFFM4dnYDgRE2V6wgxtMb
=wjYu
-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/e1tqtll-0005bs...@franck.debian.org



Accepted libvirt 1.0.1-2 (source all i386)

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

Format: 1.8
Date: Thu, 03 Jan 2013 22:36:56 +0100
Source: libvirt
Binary: libvirt-bin libvirt0 libvirt0-dbg libvirt-doc libvirt-dev 
python-libvirt libvirt-sanlock
Architecture: source all i386
Version: 1.0.1-2
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
Closes: 688177 697303
Changes: 
 libvirt (1.0.1-2) experimental; urgency=low
 .
   * [0019ff9] Pass WITH_AUDIT to configure (Closes: #688177)
   * [faf7972] Add epoch to libnetcf build dependency since both the usuable
 and unusable verion carry an epoch now (Closes: #697303)
Checksums-Sha1: 
 da79fa88d47e3b08f858d466b38743ea659f3f43 2502 libvirt_1.0.1-2.dsc
 c5dd77f5e1c6254593a70d39a0deae2a6e17555d 37772 libvirt_1.0.1-2.debian.tar.gz
 620d2922aee345e814f1d7497d2cc04e77a2bd07 2422738 libvirt-doc_1.0.1-2_all.deb
 0122e64a06b8a23f65d944c143bcaac8a6a4fdd2 4453022 libvirt-bin_1.0.1-2_i386.deb
 6724a8ec33f1d6f7e68e9cfa3a53705e6b646452 2279562 libvirt0_1.0.1-2_i386.deb
 ca402c7ebda879a6753da8e725cba260166818c7 10008862 libvirt0-dbg_1.0.1-2_i386.deb
 29c549146d51d1e5b28d501ca9aed9c62331c66f 2657678 libvirt-dev_1.0.1-2_i386.deb
 ed068359a9ee4b7d7e31850a87c1fee947b07dea 1591850 
python-libvirt_1.0.1-2_i386.deb
 a41d912e04cf5e9e1c869ff05e9dacdb7254d40c 1281610 
libvirt-sanlock_1.0.1-2_i386.deb
Checksums-Sha256: 
 9647895bf86eba0562c54eb838696cf5954acfab2e676f5dd1eaf98c497766b4 2502 
libvirt_1.0.1-2.dsc
 0d59b62c32ca2dfdac298dc712766188a825e2d389e23ed8deb853bcf06bbc62 37772 
libvirt_1.0.1-2.debian.tar.gz
 4b2819e66e3dc10acb32ed3f9f67023f3c0bb774ef2cb1e2c16b46ac2ad596a8 2422738 
libvirt-doc_1.0.1-2_all.deb
 c21d0b4357371716462738990a00277c40dec73f5cc247cccd24d1f535195091 4453022 
libvirt-bin_1.0.1-2_i386.deb
 3f123a59a12d5dbd1599b17cc28a56783294f61de9f5b90c0f3c4139f29ac706 2279562 
libvirt0_1.0.1-2_i386.deb
 c0969b5a850f3e6743c3c5674fee76207a9864084fa0a7ec16645673ca13b3cc 10008862 
libvirt0-dbg_1.0.1-2_i386.deb
 4457c0f9235c2a201fac20b5eba522da4e23b941dd5db9450911bb5e189df9b5 2657678 
libvirt-dev_1.0.1-2_i386.deb
 c5035d41abec40338ea60cf725ebb64900ea2a3cf7fca5dba8c6376939310e8c 1591850 
python-libvirt_1.0.1-2_i386.deb
 59d7233d0c280f8c951c43186577590486dc9aed3e5bd62a7c8f38e3d3c8d22f 1281610 
libvirt-sanlock_1.0.1-2_i386.deb
Files: 
 60f6cae81b93c482a1eac875a38fa335 2502 libs optional libvirt_1.0.1-2.dsc
 5ae6450d0d04d13f75e2acbdf9c681eb 37772 libs optional 
libvirt_1.0.1-2.debian.tar.gz
 bfb85da4c0d4574258efee0b11f73741 2422738 doc optional 
libvirt-doc_1.0.1-2_all.deb
 9aed5cb2a2447be4c895a201601a55ad 4453022 admin optional 
libvirt-bin_1.0.1-2_i386.deb
 32d54219eae98b1fb19c584bc1558321 2279562 libs optional 
libvirt0_1.0.1-2_i386.deb
 065dc5c7c0aa0ebad9efc7cd6d4dc6c8 10008862 debug extra 
libvirt0-dbg_1.0.1-2_i386.deb
 33675f4bfc04ab3fe0487ee373a0476c 2657678 libdevel optional 
libvirt-dev_1.0.1-2_i386.deb
 5aa9cf979428d75b3e4d815f750b6cde 1591850 python optional 
python-libvirt_1.0.1-2_i386.deb
 7a363bbf81d10325ef47c811bdff5e75 1281610 libs extra 
libvirt-sanlock_1.0.1-2_i386.deb

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

iD8DBQFQ5gmYn88szT8+ZCYRAp31AJ9w/laUswn2PEu8phQOxGqJw5/ksACeLevH
Ikng0fH9hNdJWIlhrqElAu8=
=eAUU
-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/e1tqtoe-0003zi...@franck.debian.org



Accepted uicilibris 1.12-1 (source all)

2013-01-03 Thread Georges Khaznadar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Jan 2013 23:49:16 +0100
Source: uicilibris
Binary: uicilibris
Architecture: source all
Version: 1.12-1
Distribution: unstable
Urgency: low
Maintainer: Georges Khaznadar georg...@debian.org
Changed-By: Georges Khaznadar georg...@debian.org
Description: 
 uicilibris - convert mediawiki contents to a printable book
Changes: 
 uicilibris (1.12-1) unstable; urgency=low
 .
   * implemented a specific template for ISN:creditphoto
Checksums-Sha1: 
 245b583f9f822f85c256b6d7c50e1103effc2897 1129 uicilibris_1.12-1.dsc
 bb1ca7b39fe1daace1fba65bc703af9fefd0a413 5125926 uicilibris_1.12.orig.tar.gz
 7d7d9c65dca48d48f117a9c522c004acfbfd479d 3766 uicilibris_1.12-1.debian.tar.gz
 fb5b0fc0e30efb4376601eb07c72efbedcadb2eb 379988 uicilibris_1.12-1_all.deb
Checksums-Sha256: 
 02feba184d240e43747210b6e2d8bbe9f9000eebbf47ef33c192cbc8039e48b8 1129 
uicilibris_1.12-1.dsc
 5d9f0ca046deb17198eb3f77889ad37ee7070b8a1c0847c83d95da52ed63fa73 5125926 
uicilibris_1.12.orig.tar.gz
 d780df4c61c386c6b4b44f940a7b9198de353ced7a486b8ec63c5a481976d275 3766 
uicilibris_1.12-1.debian.tar.gz
 1e6bb8136fe12ebb59b1471dd67bb1281295642f42e011a001a9684150a1f261 379988 
uicilibris_1.12-1_all.deb
Files: 
 63284584786d188a24f67d32039c5ca3 1129 tex extra uicilibris_1.12-1.dsc
 e34c4f2ab5fad2248afb63bb9242b493 5125926 tex extra uicilibris_1.12.orig.tar.gz
 4c53882be0a47e7b755540063e7ff7e6 3766 tex extra uicilibris_1.12-1.debian.tar.gz
 a7b0b776f7dd9a118d0489cf0dfdfee1 379988 tex extra uicilibris_1.12-1_all.deb

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

iD8DBQFQ5hernfmb2hFpETARAs5vAJ4+efj/BV4WHWrBYG6ueE87cyaCHACfQogc
UsJoEADdkt0TJx18Yd4kUVw=
=5RdD
-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/e1tquk5-0007pg...@franck.debian.org



Accepted haskell-http-reverse-proxy 0.1.1-1 (source all amd64)

2013-01-03 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 03 Jan 2013 20:22:46 -0500
Source: haskell-http-reverse-proxy
Binary: libghc-http-reverse-proxy-dev libghc-http-reverse-proxy-prof 
libghc-http-reverse-proxy-doc
Architecture: source all amd64
Version: 0.1.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-http-reverse-proxy-dev - reverse-proxy HTTP requests, either over raw 
sockets or with WAI
 libghc-http-reverse-proxy-doc - reverse-proxy HTTP requests, over raw sockets 
or with WAI; docume
 libghc-http-reverse-proxy-prof - reverse-proxy HTTP requests, over raw sockets 
or with WAI; profil
Changes: 
 haskell-http-reverse-proxy (0.1.1-1) experimental; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 3d2cdcef528964cefaa6eec30d23db4fbe6e8d44 3581 
haskell-http-reverse-proxy_0.1.1-1.dsc
 95cc354e3707a7f28a160ea27cefff751e83af82 6317 
haskell-http-reverse-proxy_0.1.1.orig.tar.gz
 04f0470696707d92a7e3afe21c2e1989b765a4e8 2766 
haskell-http-reverse-proxy_0.1.1-1.debian.tar.gz
 be688090c1949a1a2705fec362757dc90ff98c4e 41610 
libghc-http-reverse-proxy-doc_0.1.1-1_all.deb
 bf3a9a65bc64f6a7c021928f3fd2e7d92fb5b2af 66274 
libghc-http-reverse-proxy-dev_0.1.1-1_amd64.deb
 e1fab7b4f7f2705ee8357f1646190e4a39006233 60498 
libghc-http-reverse-proxy-prof_0.1.1-1_amd64.deb
Checksums-Sha256: 
 19205d6a34b0df6d525c876d5a61a6e07037eafe68bb97471e5d411f833eab89 3581 
haskell-http-reverse-proxy_0.1.1-1.dsc
 ec02aae6551df7b3371a024944df0cc29e871660335e7e62fef0831df8fd045c 6317 
haskell-http-reverse-proxy_0.1.1.orig.tar.gz
 f5753bb0bab3a5e1231c255ead8efe76027a6a06b6af250f0bed176b3ec838bd 2766 
haskell-http-reverse-proxy_0.1.1-1.debian.tar.gz
 913edff96804ea39b86698bf4c47cf84965c81701797523d5eb8f6223037bc18 41610 
libghc-http-reverse-proxy-doc_0.1.1-1_all.deb
 cab0eb30966dc7158e3a8736a35bd3607efa332ca26b66519f5ec363bbd1951c 66274 
libghc-http-reverse-proxy-dev_0.1.1-1_amd64.deb
 15c258fc4dd32c4960fa1c316c5df0fc31df857421fb0dd63c21d2933f87d38f 60498 
libghc-http-reverse-proxy-prof_0.1.1-1_amd64.deb
Files: 
 5a72f7623a1b41243d792e5f5b448246 3581 haskell extra 
haskell-http-reverse-proxy_0.1.1-1.dsc
 26b849d19959d155c885a9c20e455a00 6317 haskell extra 
haskell-http-reverse-proxy_0.1.1.orig.tar.gz
 245e139aa4729261bfb7039e9842eb03 2766 haskell extra 
haskell-http-reverse-proxy_0.1.1-1.debian.tar.gz
 5ffad4e77afd87acc398cd2ac10ff155 41610 doc extra 
libghc-http-reverse-proxy-doc_0.1.1-1_all.deb
 0b19f626e65c9e016cf75a6428d4ff6f 66274 haskell extra 
libghc-http-reverse-proxy-dev_0.1.1-1_amd64.deb
 34a452ce9b14008592533c262867b5e1 60498 haskell extra 
libghc-http-reverse-proxy-prof_0.1.1-1_amd64.deb

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

iQIcBAEBCgAGBQJQ5jAsAAoJEFWSMx4ZnTioV1MQAJYPgTjr1z1Ex6BTfrQxIbkE
4RrFfaQ0pDOTxxoslF99+N5IZ2y6NR2gF2PgxRuYj5Z6nMrfwJdUZQqH4OjOIqYe
CdyS28NQDdnVzP2r3BG/csCLjbgqp2S/VGfUrgK/+gLmYSDry/sMCB0JJOK94IFx
+w7hdkGGRCDTKQdZAbleBAN6I4Gbk6tX9paPi9F1YmGmbM06jsRiz51HeZgMmLI7
ugN51RrWqbcBVPheGwlLr8jZpUJla4tikUHLXmNZovNrREMXHLu0Ju5Pgyy4RvXA
hkbHMoD3Z/zPJdb2ynMepNlCfoaDA86QVN1dPvXdxiyK/RSdQgPSbT4s34FZd7qM
VNN2VBWAdS+8jg34qfOoJVlQzN3bVpYzaaORq//uP4+EXkjL2buFx4CihBCJvcfg
rjt7DiaGrv8SYF3EuCJpdTYTI6c80XeziaO0IhhaI7xZRKLagvWNMdKBjYUFBu5Y
uSbmthEs5BFDWQIWX9IjsN5XIFrkkW0t5hDr6ufcz2mQWajmOxuTn9cZkXqV0kuc
gQIYBxIEJ7OjR0E4qx+W24rYubd7IYm3YsFNrkLSNTv6ybUDlYcueO+HSSwypM7J
RP3X3WTxqfLNkmhYIK8tgcSWKI6ZYgsC2NIzRZW7QYCkm9FYUqrFU9mmDiy9P3IS
UdBo79pVAIdgGONexCbT
=X4ZG
-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/e1tqw9f-00076q...@franck.debian.org



Accepted haskell-project-template 0.1.1-1 (source all amd64)

2013-01-03 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 03 Jan 2013 20:31:21 -0500
Source: haskell-project-template
Binary: libghc-project-template-dev libghc-project-template-prof 
libghc-project-template-doc
Architecture: source all amd64
Version: 0.1.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-project-template-dev - specify Haskell project templates and generate 
files
 libghc-project-template-doc - specify Haskell project templates and generate 
files; documentati
 libghc-project-template-prof - specify Haskell project templates and generate 
files; profiling l
Changes: 
 haskell-project-template (0.1.1-1) experimental; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 ab5b642358570bc1753c905705e4b790eaf5da29 3242 
haskell-project-template_0.1.1-1.dsc
 d9ca4d7afc281b0553cdcd8c59f0c29ee1be48e1 3810 
haskell-project-template_0.1.1.orig.tar.gz
 0a3c8180aaf3d72164de752d043911d60123f1b1 2559 
haskell-project-template_0.1.1-1.debian.tar.gz
 8fc9473e6d105e61f7bbdcfd0c91055ddc4ec355 34354 
libghc-project-template-doc_0.1.1-1_all.deb
 71f8668bf9b893cdd4bdd92e63c89f8a7a7de5e3 39786 
libghc-project-template-dev_0.1.1-1_amd64.deb
 31e4ec8e820d214b426589f070a2247a862fc1ab 35654 
libghc-project-template-prof_0.1.1-1_amd64.deb
Checksums-Sha256: 
 2ece61a2650c9fa21750d550e15764edea6080cc71c5df2e9bcb2fd028ab9b1c 3242 
haskell-project-template_0.1.1-1.dsc
 ca160d5d1cce4e39e5a791738725bdb59f39ed92a9f0885fc2fe1c0aa1c3d0a0 3810 
haskell-project-template_0.1.1.orig.tar.gz
 a887f37457bcb4d70860b5041b49e707654765db87d1a15501d8381d3edeb4ae 2559 
haskell-project-template_0.1.1-1.debian.tar.gz
 a8a34033d612770cbc4b346a14d2cc523c71c80b007fdb504177ed41eeabb6ec 34354 
libghc-project-template-doc_0.1.1-1_all.deb
 8b3668e534344e7e0dea58761ee1b10d5cc01c4edc76cc9530940626252d86ae 39786 
libghc-project-template-dev_0.1.1-1_amd64.deb
 4668327d94c40a8b70c821f651afe4de965ae9d3f7ec3c47b30f74b14dd77715 35654 
libghc-project-template-prof_0.1.1-1_amd64.deb
Files: 
 3001bc7e0012db6ea7da5683a6c6d124 3242 haskell extra 
haskell-project-template_0.1.1-1.dsc
 b6b203081f9bfa9020e60cb19ba7002a 3810 haskell extra 
haskell-project-template_0.1.1.orig.tar.gz
 b58e2207061516e51f9fc511d2cd6acf 2559 haskell extra 
haskell-project-template_0.1.1-1.debian.tar.gz
 f73709b56f52b739402be0c5930a3c4b 34354 doc extra 
libghc-project-template-doc_0.1.1-1_all.deb
 720213724dfc8d96b77d71e9bbea01dc 39786 haskell extra 
libghc-project-template-dev_0.1.1-1_amd64.deb
 6e8ce227d6491087829348660b0e5e89 35654 haskell extra 
libghc-project-template-prof_0.1.1-1_amd64.deb

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

iQIcBAEBCgAGBQJQ5jG6AAoJEFWSMx4ZnTiow24P/RhkO5ZakKhM8fCD1Vqphijw
DJF4cKJ/B0y411ejJjsNC2FlPUQOuIUZFe6jnBVxI1Vwrpi7guXV42tILQTsyf3W
MpdEkW6NuPdeAxSJfd3eSiPWmrH+6Rkjiyqd1THbXcB3outoCWLJ99yZeZ1LgicH
vXVbHb7N+wZqZrzkeisHmtwVPVbeBszxaA60Ry/mR2l5U8H89liOFwvnhuTFJrOZ
h1zZqb1vnS7fpy0XO7dJqptiGSsRwvm740La+4fWQS0KPrxLqLUTXgD8zHB6N4YV
UyzX7/LPjcEK8ICE5rm625wWLBOGtRdnF2Ubw4u0n+Ct0pKSKCrEWoguEzw/r5XJ
q2KBBasCH6GLxuKR1AN6hGAxNWAv5cgrq6TqL2bEZx1OU0wS8bfYasQL+hQuZv89
o/TJq7GflMDGIDd+nkdlCgYR0AHFE9K2ON1kTHxEKDMDDo9y0N0ovbGRM4cwlh/c
oBTEbykhM1VEIxHzgXUyz2sCWzqWIK9smSleBf9PlP/yKrKf2lH/En0HeXmR38gf
HPgT+BpncYGwyrFUl5ddHF1fWpOeYJzIMzUe3+Orkn97+wcL5xwsQNnGfqbsWfwg
uo/fs0muP5NLQXAsxkH1TfLwe29A8/8cEXvJvPfzY59nmsAhFJgk3n0guy4V6iS9
YWM2AT5L9VpN+sy9HdZq
=QvlS
-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/e1tqwnd-0002xz...@franck.debian.org



  1   2   >