git dangerous operations on alioth

2013-02-28 Thread Daniel Pocock


There was recently some discussion in pkg-javascript about how to give
more people access to the VCS (e.g. keeping the git repositories
logically organised under the pkg-javascript tree, but making write
access available to all DDs + alioth guest users and not just those in
the pkg-javascript UNIX group)

I generally agree with the principle of giving more people access, but
git access is `all or nothing'.  This is not just true for alioth, it is
much the same with github hosting and many others.

Has anybody had experience controlling access to git repositories, for
example, to give users access but prevent some of the following
dangerous operations?

- prevent users pushing with the `--force' option
(from the man page for git-push: This can cause the remote repository
to lose commits; use it with care.)

- ensure that users only push commits authored by themselves (email
address white list)

- prevent some users pushing tags (or only allow tags matching a pattern)

Github partially works around this issue by providing a convenient web
UI for managing pull requests: so you simply don't give people access to
do any commits at all, and you manually review each of their changes,
although it only requires a couple of mouse clicks to accept each patch.



-- 
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/512f25ce.6060...@pocock.com.au



Re: git dangerous operations on alioth

2013-02-28 Thread Tollef Fog Heen
]] Daniel Pocock 

 Has anybody had experience controlling access to git repositories, for
 example, to give users access but prevent some of the following
 dangerous operations?

 - prevent users pushing with the `--force' option
 (from the man page for git-push: This can cause the remote repository
 to lose commits; use it with care.)

You can enable denyFastForward in the config and enable reflogs, that
should help with this.

 - ensure that users only push commits authored by themselves (email
 address white list)

A hook should be able to do this.

 - prevent some users pushing tags (or only allow tags matching a pattern)

You can do this with a hook as well.

I'm using gitano (not packaged) for this on my own setup, it has a set
of ACLs that gets run.  I think gitolite is able to do it as well, so
maybe take a look at whether that does what you want?

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


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



Re: git dangerous operations on alioth

2013-02-28 Thread Dmitrijs Ledkovs
On 28 February 2013 09:39, Daniel Pocock dan...@pocock.com.au wrote:


 There was recently some discussion in pkg-javascript about how to give
 more people access to the VCS (e.g. keeping the git repositories
 logically organised under the pkg-javascript tree, but making write
 access available to all DDs + alioth guest users and not just those in
 the pkg-javascript UNIX group)

 I generally agree with the principle of giving more people access, but
 git access is `all or nothing'.  This is not just true for alioth, it is
 much the same with github hosting and many others.

 Has anybody had experience controlling access to git repositories, for
 example, to give users access but prevent some of the following
 dangerous operations?

 - prevent users pushing with the `--force' option
 (from the man page for git-push: This can cause the remote repository
 to lose commits; use it with care.)


Alternatively gerrit and gitolite can limit that.

 - ensure that users only push commits authored by themselves (email
 address white list)


gerrit does this out of the box as well. But I do limit use in this.
If i merge a patch from my friend, why can't I push it into the
repository? I'd rather also look for Sign-off-by lines as well.

 - prevent some users pushing tags (or only allow tags matching a pattern)


gitolite / gerrit can do that.

 Github partially works around this issue by providing a convenient web
 UI for managing pull requests: so you simply don't give people access to
 do any commits at all, and you manually review each of their changes,
 although it only requires a couple of mouse clicks to accept each patch.


Gerrit can provide both web  email interface to merge / review patches.
It is used by projects like android and libreoffice to process a high
velocity stream of incoming patches.

Regards,

Dmitrijs.


-- 
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/CANBHLUg2PwR9HWZsBuUrcjTae+p7_Vh6vF=bKiDR070B1y=d...@mail.gmail.com



Re: git dangerous operations on alioth

2013-02-28 Thread Andrey Rahmatullin
On Thu, Feb 28, 2013 at 10:45:35AM +0100, Tollef Fog Heen wrote:
  Has anybody had experience controlling access to git repositories, for
  example, to give users access but prevent some of the following
  dangerous operations?
 
  - prevent users pushing with the `--force' option
  (from the man page for git-push: This can cause the remote repository
  to lose commits; use it with care.)
 
 You can enable denyFastForward in the config and enable reflogs, that
 should help with this.
What about `push :branch` ?

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: git dangerous operations on alioth

2013-02-28 Thread Stefano Zacchiroli
On Thu, Feb 28, 2013 at 10:39:26AM +0100, Daniel Pocock wrote:
 Has anybody had experience controlling access to git repositories, for
 example, to give users access but prevent some of the following
 dangerous operations?

Related to this, there is also the risk that a user will ssh on alioth
and rm the repository (accidentally or not). Do we have any kind of
protection against that? (e.g. backups we can access to without
bothering the alioth admins, or a way to give git access but not ssh
access, or...)

FWIW, I'm a happy gitolite user on my own sever and it can be used to do
rather fine grained access control. But integrating it with alioth is
not necessarily trivial, considered that we will have to have
per-project gitolite configurations. If someone ends up doing that,
please take the time to write down some tutorial/best-practice for
alioth integration. It would be *much* appreciated.

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


signature.asc
Description: Digital signature


Re: git dangerous operations on alioth

2013-02-28 Thread Arno Töll
Hi,

On 28.02.2013 11:07, Stefano Zacchiroli wrote:
 On Thu, Feb 28, 2013 at 10:39:26AM +0100, Daniel Pocock wrote:
 Has anybody had experience controlling access to git repositories, for
 example, to give users access but prevent some of the following
 dangerous operations?
 
 Related to this, there is also the risk that a user will ssh on alioth
 and rm the repository (accidentally or not). Do we have any kind of
 protection against that? (e.g. backups we can access to without
 bothering the alioth admins, or a way to give git access but not ssh
 access, or...)

The obvious solution would be to deny people accessing your repository
in unwanted ways. The current Alioth ACLs do not really allow this so we
have to trust people.

Personally I do host almost all my packages in collab-maint and contrary
to common belief, I only made good experiences with it. This is more of
a hypothetical discussion therefore.

Having that said the risk is real and it may be time to reconsider some
choices including the use of Alioth itself for those who do not believe
in openness. Chances are #700630 is going to rescue us all on that.
Maybe we could set-up our own gitorious instance once the stuff is
packaged. I at least am very interested in such a Debian service and
might even set one up.


-- 
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D



signature.asc
Description: OpenPGP digital signature


Re: git dangerous operations on alioth

2013-02-28 Thread Simon McVittie
On 28/02/13 09:39, Daniel Pocock wrote:
 Has anybody had experience controlling access to git repositories, for
 example, to give users access but prevent some of the following
 dangerous operations?

Do you consider this to be a strong security measure against malicious
changes, or a weak safety measure against accidents?

As a security measure, it's basically not going to work as long as users
have unrestricted Unix write access to the git repository: anything you
set up can be circumvented (at worst, by rm -rf all subdirectories and
replace them). I suspect that only a system like Gitorious or Gerrit,
where the repository is owned by a dedicated uid and individual users
don't have +w, can give you that.

As a safety measure against accidents, how far do you need/want to go?
As Tollef and Andrey mentioned, denying non-fast-forward pushes protects
you from most accidents; it can be circumvented by a sufficiently
determined committer, but perhaps don't do that, then.

If you look at it from the appropriate angle, the combination of ftp.d.o
and snapshot.d.o (particularly source packages) is a big, inefficient
VCS, with a rather wider user-base than Alioth - what the maintainer
says the git history of package foo is seems relatively unimportant
when compared with what its upload history looks like. All DDs have the
ability to commit wide-ranging changes to that VCS, and we mostly
regulate that by social conventions for what can and can't be in an NMU
or a team upload, discouraging hostile NMUs and hijacking, etc.,
rather than by applying chmod.

See also
http://joeyh.name/blog/entry/ending_the_tyranny_of_unix_permissions/
for an interesting viewpoint on this.

S


-- 
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/512f4a5b.7060...@debian.org



Re: git dangerous operations on alioth

2013-02-28 Thread Andrew Shadura
Hello.

On 28 February 2013 12:51, Arno Töll a...@debian.org wrote:
 Having that said the risk is real and it may be time to reconsider some
 choices including the use of Alioth itself for those who do not believe
 in openness. Chances are #700630 is going to rescue us all on that.
 Maybe we could set-up our own gitorious instance once the stuff is
 packaged. I at least am very interested in such a Debian service and
 might even set one up.

On this regard, I propose to wait till I finish packaging Rhodecode,
and install it, as then we'd have both hg and git in one unified
interface.

-- 
WBR, Andrew


--
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/camb-mazovq1vgal1zpcujg4zsb_cvsmauaz-+u+sf7-xzf9...@mail.gmail.com



Bug#701883: general: error in the load driver displaylink_drv.so in configuration for two displays with Xinerama

2013-02-28 Thread Pablo Zuniga
Package: general
Severity: important

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

[   104.911]
X.Org X Server 1.12.4
Release Date: 2012-08-27
[   104.914] X Protocol Version 11, Revision 0
[   104.915] Build Operating System: Linux 3.2.0-4.drm-amd64 x86_64 Debian
[   104.916] Current Operating System: Linux mairon 3.2.0-4-amd64 #1 SMP Debian
3.2.35-2 x86_64
[   104.916] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64
root=/dev/mapper/mairon-root ro quiet
[   104.918] Build Date: 29 November 2012  07:18:16PM
[   104.920] xorg-server 2:1.12.4-4 (Julien Cristau jcris...@debian.org)
[   104.921] Current version of pixman: 0.26.0
[   104.923]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[   104.923] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   104.926] (==) Log file: /var/log/Xorg.0.log, Time: Wed Feb 27 18:14:40
2013
[   104.927] (==) Using config file: /etc/X11/xorg.conf
[   104.927] (==) Using system config directory /usr/share/X11/xorg.conf.d
[   104.927] (==) ServerLayout multihead
[   104.927] (**) |--Screen screen0 (0)
[   104.927] (**) |   |--Monitor monitor0
[   104.927] (**) |   |--Device dl1
[   104.927] (**) |--Screen screen1 (1)
[   104.927] (**) |   |--Monitor monitor1
[   104.927] (**) |   |--Device intel
[   104.927] (**) Option Xinerama on
[   104.927] (==) Automatically adding devices
[   104.927] (==) Automatically enabling devices
[   104.928] (**) Xinerama: enabled
[   104.928] (WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
[   104.928]Entry deleted from font path.
[   104.928] (WW) The directory /var/lib/defoma/x-ttcidfont-
conf.d/dirs/TrueType does not exist.
[   104.928]Entry deleted from font path.
[   104.928] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[   104.928] (==) ModulePath set to /usr/lib/xorg/modules
[   104.928] (II) The server relies on udev to provide the list of input
devices.
If no devices become available, reconfigure udev or disable
AutoAddDevices.
[   104.928] (II) Loader magic: 0x7fccf4a53ae0
[   104.928] (II) Module ABI versions:
[   104.928]X.Org ANSI C Emulation: 0.4
[   104.928]X.Org Video Driver: 12.1
[   104.928]X.Org XInput driver : 16.0
[   104.928]X.Org Server Extension : 6.0
[   104.928] (--) PCI:*(0:0:2:0) 8086:0152:17aa:3091 rev 9, Mem @
0xf780/4194304, 0xe000/268435456, I/O @ 0xf000/64
[   104.928] (II) Open ACPI successful (/var/run/acpid.socket)
[   104.928] (II) LoadModule: extmod
[   104.928] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[   104.928] (II) Module extmod: vendor=X.Org Foundation
[   104.928]compiled for 1.12.4, module version = 1.0.0
[   104.928]Module class: X.Org Server Extension
[   104.928]ABI class: X.Org Server Extension, version 6.0
[   104.928] (II) Loading extension SELinux
[   104.928] (II) Loading extension MIT-SCREEN-SAVER
[   104.928] (II) Loading extension XFree86-VidModeExtension
[   104.928] (II) Loading extension XFree86-DGA
[   104.928] (II) Loading extension DPMS
[   104.928] (II) Loading extension XVideo
[   104.928] (II) Loading extension XVideo-MotionCompensation
[   104.928] (II) Loading extension X-Resource
[   104.928] (II) LoadModule: dbe
[   104.928] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[   104.928] (II) Module dbe: vendor=X.Org Foundation
[   104.928]compiled for 1.12.4, module version = 1.0.0
[   104.928]Module class: X.Org Server Extension
[   104.928]ABI class: X.Org Server Extension, version 6.0
[   104.928] (II) Loading extension DOUBLE-BUFFER
[   104.929] (II) LoadModule: glx
[   104.929] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   104.929] (II) Module glx: vendor=X.Org Foundation
[   104.929]compiled for 1.12.4, module version = 1.0.0
[   104.929]ABI class: X.Org Server Extension, version 6.0
[   104.929] (==) AIGLX enabled
[   104.929] (II) Loading extension GLX
[   104.929] (II) LoadModule: record
[   104.929] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[   104.929] (II) Module record: vendor=X.Org Foundation
[   104.929]compiled for 1.12.4, module version = 1.13.0
[   104.929]Module class: X.Org Server Extension
[   104.929]ABI class: X.Org Server Extension, version 6.0
[   104.929] (II) Loading extension RECORD
[   104.929] (II) 

Annual ping for Sergey B Kirpichev

2013-02-28 Thread Sergey B Kirpichev
Package: debian-maintainers

This is my annual ping.

CC'd to debian-devel@, as d-m pseudo-package has lots of stalled
annual ping reports.  Are we have need in such kind of bureaucracy?


signature.asc
Description: Digital signature


Re: Getting Intel Cedarview drivers into Debian

2013-02-28 Thread Mikko Rasa

On 25.02.2013 17:06, Carlos Alberto Lopez Perez wrote:

On 25/02/13 15:09, Mikko Rasa wrote:

On 21.02.2013 19:42, Carlos Alberto Lopez Perez wrote:

On 21/12/12 14:23, Mikko Rasa wrote:

Hi Debian developers,

I'm working as a consultant on a project to develop drivers for the
PowerVR graphics processor in the Cedarview family of Intel Atom
microprocessors in a Debian environment.  The current target is Wheezy,
and Intel wishes to get the drivers into the official distribution.

What they've failed to take into account is that Wheezy is currently
frozen in preparation of release, so I'm more than a bit skeptical of
getting a new package in (I was only brought in to the project very
recently).  However, I promised to ask you about this, so here we go.

It should be noted that due to licensing issues, the driver will be
closed source.  The kernel component is under the GPL, so a dkms package
will be made.

There's also one kernel patch that needs to be applied to Wheezy's
kernel for the driver to function.  The patch has been accepted to the
mainline kernel, and my understanding is that it's included in the 3.7
release[1].

On to questions:

1. Is there any possibility of getting the drivers in the initial Wheezy
release?  If so, what needs to happen on our end?

2. What about a subsequent update to Wheezy?  I wasn't able to find
information on what kinds of changes are permitted.

3. Neither us nor Intel has any Debian developers on our respective
payrolls.  What's the best approach for maintaining the package?  Should
someone from Intel become a maintainer, or are there some existing
developers or maintainers that can take responsibility of the package
after the initial work is complete?

[1]
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=ac207ed2471150e06af0afc76e4becc701fa2733





Hi!

Has been there any progress related to this?

Ubuntu 12.04 has this drivers already packaged. You can take their
packages and adapt them to Debian Wheezy.

http://packages.ubuntu.com/precise-updates/cedarview-drm
http://packages.ubuntu.com/precise-updates/cedarview-graphics-drivers
http://packages.ubuntu.com/precise-updates/libva-cedarview-vaapi-driver


Unfortunately Ubuntu packages won't work on Debian Wheezy because the
binary blob for the Xorg driver (cedarview-graphics-drivers) is linked
with glibc 2.15 and Wheezy has 2.13.


I would be interested in testing any package that you may have for
Wheezy. Just let me know about it.


Regards!


There's been some progress, but unfortunately we've found way more
problems than we expected.  Much of this is result of us receiving an
incorrect version of the driver source code.  The project has been on
hold during February while the sales departments have discussed its
continuation.  It looks like it's resuming now, but there are still
issues that need to be resolved for the driver to be considered
production quality.



Can you comment about the version of the DDK that you will be using?

AFAIK all the version of this driver out there
(Ubuntu/Meego/Fedora/Intel[1]...) are all based on the Device Driver Kit
(DDK) version 1.7 ED862890 from Imagination Technologies (IMG).
Basically is the same code compiled for different targets.

Will the packages you are planning for Wheezy be based also on this
version of the DDK (1.7-ED862890) or it will be based on a new
(improved?) version of the DDK?

I'm interested in knowing if Intel/Imagination has plans for an improved
version of this driver, because the one already available out there is a
nightmare in terms of performance.


We considered the possibility of updating the DDK to version 1.9, but in 
the end decided to stay with 1.7.  An update of the DDK would involve an 
unknown amount of work in making the driver work with it, and that was 
deemed undesirable by the customer.  Unfortunately this means that we 
won't be able to get official support from IMG or provide native support 
for full OpenGL.


The Ubuntu version does indeed perform poorly, and improving performance 
is one of our top priorities in this project.  At this point we're not 
certain how much we can do.


--
Mikko


--
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/512f6fa7.4090...@movial.com



Bug#701893: ITP: libapache2-mod-auth-mellon -- A SAML 2.0 authentication module for Apache

2013-02-28 Thread Thijs Kinkhorst
Package: wnpp
Severity: wishlist
Owner: Thijs Kinkhorst th...@debian.org

* Package name: libapache2-mod-auth-mellon
  Version : 0.6.0
  Upstream Author : Feide RND, Uninett
* URL : http://code.google.com/p/modmellon/
* License : GPLv3
  Programming Lang: C
  Description : A SAML 2.0 authentication module for Apache

mod-auth-mellon is an Apache module which enables you to authenticate
users of a web site against a SAML 2.0 enabled IdP.


-- 
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/20130228152854.29900.74498.report...@incagijs.uvt.nl



Bug#701894: ITP: proot -- chroot, mount --bind, and binfmt_misc without privilege/setup

2013-02-28 Thread Rémi Duraffort
Package: wnpp
Severity: wishlist
Owner: Rémi Duraffort ivo...@videolan.org


* Package name: proot
  Version : 2.3.1
  Upstream Author : Cédric Vincent cedric.vinc...@st.com
* URL : http://proot.me
* License : GPL
  Programming Lang: C
  Description : chroot, mount --bind, and binfmt_misc without 
privilege/setup

PRoot is a user-space implementation of chroot, mount --bind,
and binfmt_misc.

This means that users don't need any privileges or setup to do things like
using an arbitrary directory as the new root filesystem, making files
accessible somewhere else in the filesystem hierarchy, or executing programs
built for another CPU architecture transparently through QEMU user-mode.

Also, developers can add their own features or use PRoot as a Linux process
instrumentation engine thanks to its extension mechanism.

Technically PRoot relies on ptrace, an unprivileged system-call available in
every Linux kernel.


--
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/20130228154042.8463.97214.report...@ns37853.ovh.net



Processed: Re: Bug#701883: general: error in the load driver displaylink_drv.so in configuration for two displays with Xinerama

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

 reassign 701883 xserver-xorg
Bug #701883 [general] general: error in the load driver displaylink_drv.so in 
configuration for two displays with Xinerama
Bug reassigned from package 'general' to 'xserver-xorg'.
Ignoring request to alter found versions of bug #701883 to the same values 
previously set
Ignoring request to alter fixed versions of bug #701883 to the same values 
previously set
 # I cannot find displaylink_drv.so in wheezy, so close this bug??
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
701883: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701883
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.136206821413086.transcr...@bugs.debian.org



Re: Processed: Re: Bug#701883: general: error in the load driver displaylink_drv.so in configuration for two displays with Xinerama

2013-02-28 Thread Julien Cristau
On Thu, Feb 28, 2013 at 16:21:05 +, Debian Bug Tracking System wrote:

 Processing commands for cont...@bugs.debian.org:
 
  reassign 701883 xserver-xorg
 Bug #701883 [general] general: error in the load driver displaylink_drv.so in 
 configuration for two displays with Xinerama
 Bug reassigned from package 'general' to 'xserver-xorg'.
 Ignoring request to alter found versions of bug #701883 to the same values 
 previously set
 Ignoring request to alter fixed versions of bug #701883 to the same values 
 previously set
  # I cannot find displaylink_drv.so in wheezy, so close this bug??
  thanks

So why don't you just do that, then?  We're not going to support stuff
we don't ship...

Cheers,
Julien


signature.asc
Description: Digital signature


Re: arm64 Debian/Ubuntu port image available

2013-02-28 Thread Michael K. Edwards
Nice work, Wookey!  If experience cross-building for armhf is any guide,
all you need for NSS is a host build of shlibsign; see
https://github.com/mkedwards/crosstool-ng/blob/master/patches/nss/3.12.10/0001-Modify-shlibsign-wrapper-for-cross-compilation.patch.
 There's also scriptage in that repo for the build sequence and cross
parameters:
https://github.com/mkedwards/crosstool-ng/blob/master/scripts/build/cross_me_harder/510-nss.sh.
It's ugly in places (cross pkgconfig was kind of wonky at the time) but may
help you get past NSS and on to apt.

Cheers,
- Michael
On Feb 26, 2013 6:11 PM, Wookey woo...@wookware.org wrote:

 State of the Debian/Ubuntu arm64 port
 =

 *** Arm64 lives! ***

 Executive summary
 -

  * There is now a bootable (raring) image to download and run
  * Everything has been rebuilt against glibc 2.17 so it works
  * A bit more work is needed to make the rootfs useable as a native buildd
  * Multiarch crossbuilding and the build-profile mechanism is mature
 enough to cross-build
 a port from scratch (this is a big deal IMHO)
  * All packages, sources and tools are in a public repo and this work
 should be reproducible.
  * This image is fully multiarched so co-installing armhf for a
 64/32 mix should work nicely, as should multiarch crossbuilding to
 legacy x86 architectures. :-) (but I haven't tried that yet...)


  * Linaro wants 'the distros' to take this work forward from here so
 people interested in
 Debian and Ubuntu on 64-bit arm hardware need to step up and help out.


 Bootable images
 ---

 A milestone was reached this week: Enough packages were built for arm64 to
 debootstrap an
 image which booted to a prompt! After a bit of fettling (and switching to
 multistrap) I got
 an image with all the packages configured which boots with upstart to a
 login prompt (I
 admit, I did get quite excited about this, as it represents the coming
 together of nearly 3
 years work on multiarch, crossbuilding, bootstrapping, cyclic dependencies
 and arm64 :-)

 The images are available for download:
 http://wiki.debian.org/Arm64Port#Pre-built_Rootfs
 And there are destructions there for making your own.

 All these packages were cross-built on raring, untangling cyclic
 dependencies with build
 profiles (see wiki.debian.org/DebianBootstrap for how that works), making
 this the first
 (non x86) self-bootstrapped debian port ever (so far as I know). All (?)
 previous ports have
 been done using something else like OpenEmbedded (armel, armhf),
 RedHat/HardHat (arm, alpha,
 mips), something IBMy (s390) to get an initial linux rootfs on which
 debian packages are
 built.

 The new bootstrap process is (almost) just a list of sbuild commands. In
 practice there are
 still a few rough edges around cross- build-dependencies so of the 140
 packages needed for
 the bootstrap, 9 had to be built manually with 'dpkg-buildpackage -aarm64
 -d' (to skip
 build-dep checks) instead of 'sbuild --host arm64 package'.

 The current bootstrap packageset status is here:

 http://people.linaro.org/~wookey/buildd/raring-arm64/status-bootstrap.html

 There is no armv8 (arm64/aarch64) hardware available yet, so this image
 can currently only
 be run in a model. ARM provide a free-beer prorietary 'Foundation model'
 so we do have
 someting to test with. It's sluggish but perfectly useable. Booting the
 images takes a
 couple of minutes on my fairly average machine.

 The images are using the Linaro OE release kernels which seem to work fine
 for this purpose.
 Thanks to Marcin for modified bootloader lines in .axf files.



 Image status
 

 I was impressed that things basically 'just worked' on first boot. There
 is of course plenty
 of breakage, I'm sure, and I haven't looked very hard yet, but it's a lot
 better than I
 expected after months of just building stuff and testing nothing. (Things
 that are poorly:
 nano can't parse it's own syntax-coluring files for example, and multiarch
 perl has the
 wrong @INC path compiled in; I'm sure there is more). Consider this
 alpha-grade until it's
 been used a bit more.

 Things that are not yet built which would make the images a lot more
 useful are apt and a
 dhcp client. apt needs gnupg needs curl needs nss. The nss cross-build
 needs fixing to
 unbung that. A debian chroot without apt turns out to be disappointing
 quite quickly :-)
 Expect an updated image with more packages very soon.


 Multiarch crossbuilding
 ---

 It's really nice to have building and crossbuilding using exactly the same
 mechanisms
 and tools, with all files having one canonical location, and dependency
 mechanisms that
 are reliable. The more I've used this, the more I've been impressed by it.
 There is
 still work to do to expand the set of cross-buildable stuff, but it's a
 solid base to
 work from.

 Getting this port working has been 'interesting' because it's attempting 4
 new 

Re: git dangerous operations on alioth

2013-02-28 Thread gregor herrmann
On Thu, 28 Feb 2013 12:51:33 +0100, Arno Töll wrote:

 On 28.02.2013 11:07, Stefano Zacchiroli wrote:
  On Thu, Feb 28, 2013 at 10:39:26AM +0100, Daniel Pocock wrote:
  Has anybody had experience controlling access to git repositories, for
  example, to give users access but prevent some of the following
  dangerous operations?

I think the interesting (non-technical) first question is why this
would be needed.

  Related to this, there is also the risk that a user will ssh on alioth
  and rm the repository (accidentally or not). Do we have any kind of
  protection against that? (e.g. backups we can access to without
  bothering the alioth admins, or a way to give git access but not ssh
  access, or...)

At least for pkg-perl I'm quite confident that someone would just
push their locally cloned repo back to Alioth in case it was deleted
there accidentally.
 
 Personally I do host almost all my packages in collab-maint and contrary
 to common belief, I only made good experiences with it. This is more of
 a hypothetical discussion therefore.

Ack.

Again from my pkg-perl experience: Since before I joined all DDs have
commit access and we hand out group membership/commit bits quite
liberally to non-DDs. I don't remember any malicious action and the
few accidents are just minor annoyances that are quickly fixed after
the fact.
 

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: Kurt Ostbahn  Die Kombo: (Heit loss i) Anschreibm


signature.asc
Description: Digital signature


Re: Getting Intel Cedarview drivers into Debian

2013-02-28 Thread Carlos Alberto Lopez Perez
On 28/02/13 15:54, Mikko Rasa wrote:
 
 We considered the possibility of updating the DDK to version 1.9, but in
 the end decided to stay with 1.7.  An update of the DDK would involve an
 unknown amount of work in making the driver work with it, and that was
 deemed undesirable by the customer.  Unfortunately this means that we
 won't be able to get official support from IMG or provide native support
 for full OpenGL.

The driver I found to perform best is the one available on MeeGo, which
is also based on DDK 1.7. However, it stills performs poorly.

I would suggest you to reconsider switching to DDK 1.9 if this (in
theory) can improve the performance -- In my opinion is better to risk a
bit of unknown amount of work and get the chance of creating something
good, than to go with something that is already known to perform poorly.


By the way... do you know where I can find a driver built with the DDK
1.9? I'm eager to try it and see if it performs better than the ones
based on DDK 1.7 available.
Is there any distribution or website out there distributing such drivers?

 
 The Ubuntu version does indeed perform poorly, and improving performance
 is one of our top priorities in this project.  At this point we're not
 certain how much we can do.
 

Great.

Having at least one driver that performs good would be greatly welcomed
for all the Linux users that are suffering the lack of support for this
GPUs.


Thanks!



signature.asc
Description: OpenPGP digital signature


Re: git dangerous operations on alioth

2013-02-28 Thread Daniel Pocock
On 28/02/13 13:15, Simon McVittie wrote:
 On 28/02/13 09:39, Daniel Pocock wrote:
 Has anybody had experience controlling access to git repositories, for
 example, to give users access but prevent some of the following
 dangerous operations?
 

 If you look at it from the appropriate angle, the combination of ftp.d.o
 and snapshot.d.o (particularly source packages) is a big, inefficient
 VCS, with a rather wider user-base than Alioth - what the maintainer
 says the git history of package foo is seems relatively unimportant
 when compared with what its upload history looks like. All DDs have the
 ability to commit wide-ranging changes to that VCS, and we mostly
 regulate that by social conventions for what can and can't be in an NMU
 or a team upload, discouraging hostile NMUs and hijacking, etc.,
 rather than by applying chmod.

DD access is also an `all or nothing' scenario, and it is tightly
controlled in other ways.

What I was anticipating is how we can provide more access for upstreams
and other non-DDs using the guest account mechanism or potentially some
kind of non-UNIX level access

To give one example, one of my packages fails to build with clang due to
some other header file in package foo.  Somebody actually uploaded a fix
for foo onto mentors long before the freeze, but it got no further.  It
leaves me feeling that the DD community could benefit from more
automated ways to ramp up new members and accept their contributions,
but that would also mean taking the sharp edges off some things.



-- 
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/512f9fd9.5080...@pocock.com.au



Re: git dangerous operations on alioth

2013-02-28 Thread Jonas Smedegaard
Quoting Daniel Pocock (2013-02-28 19:20:09)
 On 28/02/13 13:15, Simon McVittie wrote:
  On 28/02/13 09:39, Daniel Pocock wrote:
  Has anybody had experience controlling access to git repositories, 
  for example, to give users access but prevent some of the following 
  dangerous operations?
  
 
  If you look at it from the appropriate angle, the combination of 
  ftp.d.o and snapshot.d.o (particularly source packages) is a big, 
  inefficient VCS, with a rather wider user-base than Alioth - what 
  the maintainer says the git history of package foo is seems 
  relatively unimportant when compared with what its upload history 
  looks like. All DDs have the ability to commit wide-ranging 
  changes to that VCS, and we mostly regulate that by social 
  conventions for what can and can't be in an NMU or a team upload, 
  discouraging hostile NMUs and hijacking, etc., rather than by 
  applying chmod.
 
 DD access is also an `all or nothing' scenario, and it is tightly 
 controlled in other ways.
 
 What I was anticipating is how we can provide more access for 
 upstreams and other non-DDs using the guest account mechanism or 
 potentially some kind of non-UNIX level access
 
 To give one example, one of my packages fails to build with clang due 
 to some other header file in package foo.  Somebody actually uploaded 
 a fix for foo onto mentors long before the freeze, but it got no 
 further.  It leaves me feeling that the DD community could benefit 
 from more automated ways to ramp up new members and accept their 
 contributions, but that would also mean taking the sharp edges off 
 some things.

Well, to me a contribution left at our doorstep, e.g. by uploading to 
mentors.debian.net, haven't really reached Debian yet: Someone (called a 
mentor) needs to take it the rest of the way.  Concretely a mentor might 
have shown the contributor how to get in touch with you - either 
through the BTS or maybe (if your package permits that) by injecting the 
suggested code changes directly into the VCS of your package 
maintenance.

I am in favor of making it easier to contribute, but maintainer teams 
may have sane reasons for e.g. wanting to talk to new contributors 
before letting them mess directly with their local infrastructure.


 - Jonas

-- 
 * Jonas Smedegaard - idealist  Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature


Re: Getting Intel Cedarview drivers into Debian

2013-02-28 Thread Lisandro Damián Nicanor Pérez Meyer
On Thu 28 Feb 2013 14:46:28 Carlos Alberto Lopez Perez escribió:
 On 28/02/13 15:54, Mikko Rasa wrote:
  We considered the possibility of updating the DDK to version 1.9, but in
  the end decided to stay with 1.7.  An update of the DDK would involve an
  unknown amount of work in making the driver work with it, and that was
  deemed undesirable by the customer.  Unfortunately this means that we
  won't be able to get official support from IMG or provide native support
  for full OpenGL.
 
 The driver I found to perform best is the one available on MeeGo, which
 is also based on DDK 1.7. However, it stills performs poorly.

Is it just me or this thread about propietary stuff should not be happening 
here?

It may be just me, yes.

-- 
In college, I cooked some hot dogs by putting metal forks in each end of the
hot dog and running 120 volts through it. Hot dogs have just enough
conductivity so that this works well
  greenroom(576281) - on a truly geeky way to cook hot dogs.
  Posted in Slashdot, also found in The Open Source Cookbook for Geeks.

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Re: Bulding 3.0.1 Under Ubuntu 10.04 i386

2013-02-28 Thread Cristian Ionescu-Idbohrn
Please Cc:, not subscribed to the debian-devel@lists.debian.org list.

Hi there!  Linus Torvalds is highly involved in this project :)

On Thu, 28 Feb 2013, Dirk Hohndel wrote:

 The problem is that our target audience are divers, not hackers.

Agreed.

 Someone who can build from those sources can just build from git

Check.

 But many people (even people running Linux) aren't comfortable building
 their own binaries.

I wouldn't be that sure, but ok, check.

 And for those I try to make their lives easier.

Of course.  Where do you get all that energy from?  I'm impressed.
Really.

 To me that means I need the Ubuntu packages - and those apparently can
 neatly be built with Launchpad (a couple of us are working on that right
 now).

That's good.  You say ubuntu, but how many ubuntu derivatives are there?
And who's ubuntu getting maintained packages from?

Don't get me wrong.  It's better with one alternative than no alternative
at all.

 Debian? No non-hacker is running Debian, I guess :-)

Not so.  Both my wife and one of my dauthers (non-hackers, as you might
expect) are using debian ;)  And they're happy with that too, AFAICT.
They got a choice and an offer they couldn't refuse, I guess.  No support
at all, or all support they need.  Hard to refuse ;)  Real men don't
click (tm), I know, but they're not men, and definitely not hackers.

Managed to get one debian maintainer involved, at some point, Cc:ed, but I
guess he can't live up to that honor we need so badly right now :(  Yes,
I'm trying to provoke him.

 So in reality it really is Ubuntu that I try to cover here.

That's great.  Sorry, I don't know if I can help much there but, by all
means, try me.

In the meantime, I'll try to figure out some other way to get a debian
maintainer attracted.  Attempting that right now.  That'll make all debian
derivatives happier too.  And that's the beauty of that.

Are there more debian users and divers watching this list?
Could we join forces?  Ideas?  There might be things that could be
adjusted in the upstream source that may make distributions binaries
packiging more attractive and easier to maintain.  I'm sure upstream will
try to accomodate.  I think it's a shame for such a great distribution
(been using it for more than 15 years now) to miss such an opportunity.


Cheers,

-- 
Cristian


-- 
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/alpine.deb.2.02.1302281956590.16...@znkvzvyvna.pvv.fr



Re: git dangerous operations on alioth

2013-02-28 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 28/02/13 20:20, Jonas Smedegaard wrote:
 Quoting Daniel Pocock (2013-02-28 19:20:09)
 On 28/02/13 13:15, Simon McVittie wrote:
 On 28/02/13 09:39, Daniel Pocock wrote:
 Has anybody had experience controlling access to git
 repositories, for example, to give users access but prevent
 some of the following dangerous operations?
 
 
 If you look at it from the appropriate angle, the combination
 of ftp.d.o and snapshot.d.o (particularly source packages) is a
 big, inefficient VCS, with a rather wider user-base than Alioth
 - what the maintainer says the git history of package foo is
 seems relatively unimportant when compared with what its upload
 history looks like. All DDs have the ability to commit
 wide-ranging changes to that VCS, and we mostly regulate that
 by social conventions for what can and can't be in an NMU or a
 team upload, discouraging hostile NMUs and hijacking, etc.,
 rather than by applying chmod.
 
 DD access is also an `all or nothing' scenario, and it is tightly
  controlled in other ways.
 
 What I was anticipating is how we can provide more access for 
 upstreams and other non-DDs using the guest account mechanism or
  potentially some kind of non-UNIX level access
 
 To give one example, one of my packages fails to build with clang
 due to some other header file in package foo.  Somebody actually
 uploaded a fix for foo onto mentors long before the freeze, but
 it got no further.  It leaves me feeling that the DD community
 could benefit from more automated ways to ramp up new members and
 accept their contributions, but that would also mean taking the
 sharp edges off some things.
 
 Well, to me a contribution left at our doorstep, e.g. by
 uploading to mentors.debian.net, haven't really reached Debian yet:
 Someone (called a mentor) needs to take it the rest of the way.
 Concretely a mentor might have shown the contributor how to get in
 touch with you - either through the BTS or maybe (if your package
 permits that) by injecting the suggested code changes directly into
 the VCS of your package maintenance.
 
 I am in favor of making it easier to contribute, but maintainer
 teams may have sane reasons for e.g. wanting to talk to new
 contributors before letting them mess directly with their local
 infrastructure.

I wasn't suggesting that there would be some kind of shortcut or
bypassing all human contact with new contributors, just that there may
be opportunities to streamline the process
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJRL8DGAAoJEOm1uwJp1aqDOkoP/iZZY1YczvllO8pzcNFsaeAy
7GjbS/MK9/Vm9rEOjaiaBdwa3fO9TCTYvWkeXIfwoQAw5mLd32kh0gbg+E3rqQah
NMkK+7N3h5FIUEF4+KeP8uyhcjuZBe4ig4TYdwlgaxsS8L0f8Rdd1vrtBNvCrWMD
0E8VqXq7VTQeOhXiGPHK97qUVbuGGXc+b8a6Yjah7yzQtHfC/Va3PHEJg2zgtb7L
74m9Tec0oCJxa6EdCPS2u/Rws7kHhizf+j3/HcxeOGVzHYXBZO9cj3lnd9vdrquP
bUarFFj/EomOwnbHwu42XA83r8CKHD1FnCYvsuNQphz1N7koZSI2P7vgd0xy9imS
tPQevbwsSppYUH6zS52mINFbBmNFh7bJqIl3tK9PlwBBLIXJjgdZH8/8tSrR0fRL
DiXDlzb1sNEQz0LRtuh9h1Mp4ZlSkp7NdmJ7zc7ZF8OfDvrdZzO4aHRFsSZc0j0B
xoqDViC2WgpX9qjL2i0c63RXSLT4Fd7FWRY1+EsedW/Zg8CJ27W+T/Wsd9Y3pHX0
mj7yV9R1quTaIIhp6VWxo8pmKCEkW+0Qx7216IL4gMV6z3Em0F5p6c/yVrh9acop
4GXKuDexYO0ah42mg/rFLkmmGdFF9FMMVx7Rq4jAfApUmLp9jXxckr1lzD0LVGxI
N5uG4v+YCzkM32Mny1jB
=oHiH
-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/512fc0c6.50...@pocock.com.au



Debian / Ubuntu packages [was: Re: Bulding 3.0.1 Under Ubuntu 10.04 i386]

2013-02-28 Thread Dirk Hohndel

On Feb 28, 2013, at 12:03 PM, Cristian Ionescu-Idbohrn wrote:
 And for those I try to make their lives easier.
 
 Of course.  Where do you get all that energy from?  I'm impressed.
 Really.

Actually, I just decided to give up. This is an utter waste of my time.

Whatever. Someone who cares may or may not do this at some point.
And I may or may not end up caring enough to link to it from our web page.

I have binary packages for the distributions were maintainers stepped up 
and cared enough and I'm linking to them. I'll ask other users to file a 
bug with their distro of choice (or switch to a distro that cares).

I'm done here.

/D

smime.p7s
Description: S/MIME cryptographic signature


Re: git dangerous operations on alioth

2013-02-28 Thread Philipp Kern
On Thu, Feb 28, 2013 at 04:01:34PM +0600, Andrey Rahmatullin wrote:
 On Thu, Feb 28, 2013 at 10:45:35AM +0100, Tollef Fog Heen wrote:
   Has anybody had experience controlling access to git repositories, for
   example, to give users access but prevent some of the following
   dangerous operations?
   - prevent users pushing with the `--force' option
   (from the man page for git-push: This can cause the remote repository
   to lose commits; use it with care.)
  You can enable denyFastForward in the config and enable reflogs, that
  should help with this.
 What about `push :branch` ?

»man git-config« isn't that hard:

receive.denyDeletes
If set to true, git-receive-pack will deny a ref update that deletes the
ref. Use this to prevent such a ref deletion via a push.

Also I think Tollef meant receive.denyNonFastForwards.

Kind regards
Philipp Kern


signature.asc
Description: Digital signature


Re: git dangerous operations on alioth

2013-02-28 Thread Holger Levsen
Hi,

signed commits, so you can identify unwanted bits and clean up in the very 
care case that's actually needed?


cheer,s
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/201302282241.50840.hol...@layer-acht.org



Re: Bulding 3.0.1 Under Ubuntu 10.04 i386

2013-02-28 Thread Dmitrijs Ledkovs
On 28 February 2013 20:03, Cristian Ionescu-Idbohrn
cristian.ionescu-idbo...@axis.com wrote:
 Please Cc:, not subscribed to the debian-devel@lists.debian.org list.

 Hi there!  Linus Torvalds is highly involved in this project :)

 On Thu, 28 Feb 2013, Dirk Hohndel wrote:

 The problem is that our target audience are divers, not hackers.

 Agreed.

 Someone who can build from those sources can just build from git

 Check.

 But many people (even people running Linux) aren't comfortable building
 their own binaries.

 I wouldn't be that sure, but ok, check.

 And for those I try to make their lives easier.

 Of course.  Where do you get all that energy from?  I'm impressed.
 Really.

 To me that means I need the Ubuntu packages - and those apparently can
 neatly be built with Launchpad (a couple of us are working on that right
 now).

 That's good.  You say ubuntu, but how many ubuntu derivatives are there?
 And who's ubuntu getting maintained packages from?

 Don't get me wrong.  It's better with one alternative than no alternative
 at all.

 Debian? No non-hacker is running Debian, I guess :-)

 Not so.  Both my wife and one of my dauthers (non-hackers, as you might
 expect) are using debian ;)  And they're happy with that too, AFAICT.
 They got a choice and an offer they couldn't refuse, I guess.  No support
 at all, or all support they need.  Hard to refuse ;)  Real men don't
 click (tm), I know, but they're not men, and definitely not hackers.

 Managed to get one debian maintainer involved, at some point, Cc:ed, but I
 guess he can't live up to that honor we need so badly right now :(  Yes,
 I'm trying to provoke him.

 So in reality it really is Ubuntu that I try to cover here.

 That's great.  Sorry, I don't know if I can help much there but, by all
 means, try me.

 In the meantime, I'll try to figure out some other way to get a debian
 maintainer attracted.  Attempting that right now.  That'll make all debian
 derivatives happier too.  And that's the beauty of that.

 Are there more debian users and divers watching this list?
 Could we join forces?  Ideas?  There might be things that could be
 adjusted in the upstream source that may make distributions binaries
 packiging more attractive and easier to maintain.  I'm sure upstream will
 try to accomodate.  I think it's a shame for such a great distribution
 (been using it for more than 15 years now) to miss such an opportunity.


I have only one dive of a whole 8m deep, but I am ubuntu  debian
developer and can upload this package to debian/ubuntu and a ppa.

Is there any packaging done so far? Point me to it, if not just file
Debian RFP and CC me on it.

Regards,

Dmitrijs.


-- 
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/CANBHLUgEP4tBNPRGAXXMaTgsumE=yYLU=fd=mtauwxdhfxo...@mail.gmail.com



Re: Bulding 3.0.1 Under Ubuntu 10.04 i386

2013-02-28 Thread Dirk Hohndel
Dmitrijs Ledkovs x...@debian.org writes:

 I have only one dive of a whole 8m deep, but I am ubuntu  debian
 developer and can upload this package to debian/ubuntu and a ppa.

 Is there any packaging done so far? Point me to it, if not just file
 Debian RFP and CC me on it.

There are old packages for Subsurface 1.2(?) and libdivecomputer 0.1 in
both Debian and Ubuntu. Khalid (copied) is the maintainer but apparently
has not responded to any emails and/or bugs about this in at least 4
months.

Roland Dreier had started working on creating new ones but
understandably has other things that keep him from finishing it (he's
not a diver, nor a Subsurface contributor... he basically got sucked
into this as a favor to Linus and me a while ago).

The sources are at

http://subsurface.hohndel.org/downloads/Subsurface-3.0.1.tgz

You also need libdivecomputer:

http://www.divesoftware.org/libdc/releases/libdivecomputer-0.3.0.tar.gz

Libdivecomputer appears to be the harder package to get right because of
the version number and API incompatibility issue: Basically the
libdivecomputer-0.1 package that is in Debian right now is not binary
compatible with libdivecomputer-0.3

Our preference here is static linking (as there really is no other user
of libdivecomputer in Debian or Ubuntu at this point). But I'll happily
leave it to you to figure out the best solution :-)

I hope that's all the info you need to get started.

And thanks for volunteering!

/D


-- 
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/20130228142212.923149.fmu31...@air.gr8dns.org



RE: Bulding 3.0.1 Under Ubuntu 10.04 i386

2013-02-28 Thread Dirk Hohndel
Robert Wolfe robert.wo...@robertwolfe.org writes:

 Um, forgot about me already, hmm? :)  And yes, libdivecomputer-3.0.1
 in .DEB format is also available on my site if anyone wants to try
 that (in RPM format, too).

Not at all. The problem with your approach to creating a package was
that you are using the tool that is quite explicitly NOT intended for
creating packages that are to be distributed...

/D


--
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/20130228144814.87641.fmu31...@air.gr8dns.org



Re: Bulding 3.0.1 Under Ubuntu 10.04 i386

2013-02-28 Thread Cristian Ionescu-Idbohrn
On Thu, 28 Feb 2013, Robert Wolfe wrote:

 Um, forgot about me already, hmm? :)

But, of course not.  Do you want to be Cc:ed?

 And yes, libdivecomputer-3.0.1 in .DEB format

That should probably be:

subsurface-3.0.1 and
libdivecomputer-0.3.0

I presume.  Can you make the source packages available too to Dmitrijs?
It's:

subsurface_3.0.1-x.debian.tar.gz and
libdivecomputer_0.3.0-x.debian.tar.gz

or similar, I'm thinking about.

Dmitrijs,

Old debian source packages (subsurface-1.2-1 and libdivecomputer-0.1.0),
could also be of some value.

I'm really looking forward to see latest subsurface/libdivecomputer in
debian, as soon as it can be done.  It'll most probably be unstable, but
Dmitrijs, could you please try to make them as painless as possible
portable to wheezy?

If you need info/insights, please don't hesitate to ask on
subsurf...@hohndel.org.

The recommended way (by upstream) is to build statically against
libdivecomputer.  And, AFAICT, that's what debian distributed
subsurface 1.2-1 does.

Another thing worth mentioning is that I asked for
subsurface/libdivecomputer to be orphaned/removed because they're
unmaintained.  You may want to have a look at bug:

http://bugs.debian.org/701536


Cheers,

-- 
Cristian


-- 
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/alpine.deb.2.02.1302282337560.16...@znkvzvyvna.pvv.fr



Work-needing packages report for Mar 1, 2013

2013-02-28 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: 495 (new: 1)
Total number of packages offered up for adoption: 143 (new: 0)
Total number of packages requested help for: 62 (new: 0)

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



The following packages have been orphaned:

   wput (#701867), orphaned today
 Description: tiny wget-like ftp-client for uploading files
 Installations reported by Popcon: 524

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



No new packages have been given up for adoption, but a total of 143 packages
are awaiting adoption.  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 1123 days ago
 Description: maintenance tools for a Xapian index of Debian packages
 Installations reported by Popcon: 63093

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

   isdnutils (#661110), requested 370 days ago
 Description: ISDN utilities
 Installations reported by Popcon: 8324

   jove (#470185), requested 1817 days ago
 Description: Jonathan's Own Version of Emacs - a compact, powerful
   editor
 Installations reported by Popcon: 1697

   lesstif2 (#551853), requested 1226 days ago
 Description: OSF/Motif 2.1 

Re: git dangerous operations on alioth

2013-02-28 Thread Henrique de Moraes Holschuh
On Thu, 28 Feb 2013, Holger Levsen wrote:
 signed commits, so you can identify unwanted bits and clean up in the very 
 care case that's actually needed?

Indeed.  Secure git workflows are possible, although it is a relatively new
development.  Signed commits and pull requests are a very big part of such
workflows...

http://mikegerwitz.com/docs/git-horror-story.html

-- 
  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/20130301004920.ga7...@khazad-dum.debian.net



Re: Getting Intel Cedarview drivers into Debian

2013-02-28 Thread Paul Wise
On Fri, Mar 1, 2013 at 4:12 AM, Lisandro Damián Nicanor Pérez Meyer wrote:

 Is it just me or this thread about propietary stuff should not be happening
 here?

http://www.debian.org/social_contract

 It may be just me, yes.

It definitely isn't just you.

-- 
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/CAKTje6FF4sCGV4bc9euaK9BGD=i6cmqbdlku1bj54mmtown...@mail.gmail.com



Re: Bulding 3.0.1 Under Ubuntu 10.04 i386

2013-02-28 Thread Christian PERRIER

 Old debian source packages (subsurface-1.2-1 and libdivecomputer-0.1.0),
 could also be of some value.
 
 I'm really looking forward to see latest subsurface/libdivecomputer in
 debian, as soon as it can be done.  It'll most probably be unstable, but

This thread is interesting. I faced about the same challenges when
working on packaging pYtrainer for Debian (Pytrainer is a Python
application for sports tracking, mostly used by runners and bikers).

Being supported in Debian wasn't judged as very interesting by
upstream developers : about the same feeling that Debian is only used
by hackers (those pizza-eating/beer-drinking weirdos that can only
live by facing a screen) and it would be more interesting for them
to be supported in Ubuntu. The latter being of course the distro of
choice of non techies because it's easy to use and install.

Still, well, the only way to have decent Pytrainer packages (I mean,
packages that can survive upgrades and deal with various combinations
of Python environment and libraries) has been by having those packages
prepared in Debian by Debian developers.not having packages
prepared in a random ppa by a random person who can only guarantee
that packages work on his|her own system..:-)

That was the point : doing the work in Debian guaranteed that our
quality criteria did benefit to the quality of the resulting packages
and this, up to derived distro users.

There are certainly probably 10, or 20, or 30 more users of Pytrainer
packages on Ubuntu systems than Debian systems. But, indeed, all those
can use this nice software because we did prepare the packages with
our Debian culture in mind (the original culprit for these packages
is Noèl Köthe, not me, by the way).

So, yes, if people are interested in getting this diving software
ported and well-supported in many deb-based distros as possible, I
would highly recommend doing the work in Debian.

That would even be a good way to discover that those Debian weirdos
are not all pizza eaters and beer drinkers and that some might even
dive very well, just like some Debian weirdos happen to run or bike
not so badly...:-)

How about joining the pkg-running umbrella? It's quite some time that
stuff we maintain in this team is more sport stuff than running
stuff anyway.



signature.asc
Description: Digital signature


Accepted ust 2.1.1-2 (source amd64)

2013-02-28 Thread Jon Bernard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 03:48:49 -0500
Source: ust
Binary: liblttng-ust0 libust0 liblttng-ust-dev libust-dev ust-bin
Architecture: source amd64
Version: 2.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Jon Bernard jbern...@debian.org
Changed-By: Jon Bernard jbern...@debian.org
Description: 
 liblttng-ust-dev - LTTng 2.0 Userspace Tracer (development files)
 liblttng-ust0 - LTTng 2.0 Userspace Tracer (libraries)
 libust-dev - Transitional package for liblttng-ust-dev
 libust0- Transitional package for liblttng-ust0
 ust-bin- Transitional package for lttng-tools
Changes: 
 ust (2.1.1-2) unstable; urgency=low
 .
   * [390e7e4] Include liblttng-ust-ctl library in liblttng-ust0.
 Thanks to Glenn McGrath
Checksums-Sha1: 
 2b2c7dfc6b2551adb8876f4abe87982440d57eaa 1383 ust_2.1.1-2.dsc
 891f2162b9f42ace919eb535ab51b17a13439610 5003 ust_2.1.1-2.debian.tar.gz
 07bb30747d89c23e3d3ab021abb84b99fe26c2dc 162340 liblttng-ust0_2.1.1-2_amd64.deb
 fd60dc686ca17359d660b7905e555bf5a71ae41d 10954 libust0_2.1.1-2_amd64.deb
 e65f8c76fe9d6184ff3d49dc66d654297ffeda33 215948 
liblttng-ust-dev_2.1.1-2_amd64.deb
 6cfb9d0e959a021a31c1e1d402ee8998cdbdcc88 10958 libust-dev_2.1.1-2_amd64.deb
 afcfb2d38db84f5df8161f1f18192192e496257f 10956 ust-bin_2.1.1-2_amd64.deb
Checksums-Sha256: 
 16016dc0d6b1d364f7f63cddc5e4c564f6e97c1c30b22c90198758fcb119cd91 1383 
ust_2.1.1-2.dsc
 d6d351836ed449851ac0541c46e90f548a033d3cf78d7a07ca479b182a9f6527 5003 
ust_2.1.1-2.debian.tar.gz
 74a4b830aa9222921f15f9942a7e020da12a0edd4401799a6da2e36271b291fd 162340 
liblttng-ust0_2.1.1-2_amd64.deb
 7ae9e3b4878f585bb9606984b52e7cf4f77669a044a14cae3af7729c394f806f 10954 
libust0_2.1.1-2_amd64.deb
 e162c2f4b32b763fa88bd46b11ab3b89e7e3cdd90f104fe32cee1c2c609cd185 215948 
liblttng-ust-dev_2.1.1-2_amd64.deb
 f90f7adf95f95481368bba05566689f117b0c039e6677edfef48a17ea604106b 10958 
libust-dev_2.1.1-2_amd64.deb
 d7a4ae36789aaea59706a0b82f7690f3672baa88ec7106b43429f480e0b83634 10956 
ust-bin_2.1.1-2_amd64.deb
Files: 
 221697496cd41d8db27c2ebe003c55e2 1383 libs extra ust_2.1.1-2.dsc
 54406b83f26dc691569c01bc93768adc 5003 libs extra ust_2.1.1-2.debian.tar.gz
 c60a6d7a8b5fb12fb7eed826f905200b 162340 libs extra 
liblttng-ust0_2.1.1-2_amd64.deb
 47771b355346a0c254deab8c1343ec42 10954 oldlibs extra libust0_2.1.1-2_amd64.deb
 8951b8ec98e48ad4b9549d49c03de443 215948 libdevel extra 
liblttng-ust-dev_2.1.1-2_amd64.deb
 e6751b5e9a13268570fb690d3ffb3358 10958 oldlibs extra 
libust-dev_2.1.1-2_amd64.deb
 5e20f39fcaa2da5ad80da70b91f0add2 10956 oldlibs extra ust-bin_2.1.1-2_amd64.deb

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

iEYEARECAAYFAlEvHSMACgkQwAT2A1kSwn4QgwCfd93H2n3NikMuWinqRfcrU9Fu
UNoAniQH88lBLYhZZFuMUizz8sdYsWj6
=ax0e
-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/e1uazcw-0005aj...@franck.debian.org



Accepted doxygen 1.8.1.2-2 (source amd64 all)

2013-02-28 Thread Helmut Grohne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 10:09:45 +0100
Source: doxygen
Binary: doxygen doxygen-latex doxygen-doc doxygen-gui
Architecture: source amd64 all
Version: 1.8.1.2-2
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Helmut Grohne hel...@subdivi.de
Description: 
 doxygen- Documentation system for C, C++, Java, Python and other languages
 doxygen-doc - Documentation for doxygen
 doxygen-gui - GUI configuration tool for doxygen
 doxygen-latex - Documentation system for C, C++, Java, Python and other 
languages
Closes: 625956
Changes: 
 doxygen (1.8.1.2-2) unstable; urgency=low
 .
   [ Mònica Ramírez Arceda ]
   * Non-maintainer upload.
   * Include jquery-1.7.1.js source in debian/jquery and update its license.
 This file has the source code for src/jquery_p[123].js.
 Closes: #625956.
   * Include jquery.scrollTo-1.4.2.js in debian/jquery and add its license.
 This file has the source code for src/jquery_fx.js.
   * Include jquery-ui*.js and jquery.ba-hashchange.js in debian/jquery and
 add their licenses. These files have the source code for src/jquery_ui.js.
 .
   [ Helmut Grohne ]
   * Added myself as uploader.
Checksums-Sha1: 
 a091e0e630b633b9d2abd9da178338be18d824ea 1466 doxygen_1.8.1.2-2.dsc
 9678b1b76deec1342924c0a833956251b0069299 197070 doxygen_1.8.1.2-2.debian.tar.gz
 ddc3c1bd1b8de93d8daa8247d957fd64dedf2517 2578406 doxygen_1.8.1.2-2_amd64.deb
 2d22fd5585f0618b3254d413d8bb1e16c7fa06e2 263290 doxygen-gui_1.8.1.2-2_amd64.deb
 f240f6e7d634471c5e25882b5bb2c0dde3f4908c 11284 doxygen-latex_1.8.1.2-2_all.deb
 b97632ff6a1e787db1d6758d5ca8ae905678c436 2150946 doxygen-doc_1.8.1.2-2_all.deb
Checksums-Sha256: 
 520c95c9379c83c228b12fe3e40f9618f759a98db8981411454e8b4a60b0bb98 1466 
doxygen_1.8.1.2-2.dsc
 09a8043d418fc80b849309696ccd017676f55d5e4c92e32d3280ce0579b0030d 197070 
doxygen_1.8.1.2-2.debian.tar.gz
 82054cd9574bcbaa090c2ea48ab9d01c4d355389acf7d0ebec73bf5d6e5d1a9b 2578406 
doxygen_1.8.1.2-2_amd64.deb
 dad1b7171cd2577ae83315514bc06ee7d96df2f1c2f859ffa9616ed473426c33 263290 
doxygen-gui_1.8.1.2-2_amd64.deb
 2ae6a864a96a157f04a593938d6d8a552ec3c7d6ea9800a41b3c0a68737d87db 11284 
doxygen-latex_1.8.1.2-2_all.deb
 a68e7d90414c5ff0200b08d7a596da2f8319fc39e4485fe1bf388e0c31cee3a5 2150946 
doxygen-doc_1.8.1.2-2_all.deb
Files: 
 e590b11e7e25bef496e43dc1429eb47e 1466 devel optional doxygen_1.8.1.2-2.dsc
 e83ea3b52c371b6bd4bda9bdfde60c0a 197070 devel optional 
doxygen_1.8.1.2-2.debian.tar.gz
 0feeb89cf7f00c1174fecba3975e0b33 2578406 devel optional 
doxygen_1.8.1.2-2_amd64.deb
 7ccb613435767286973d54724c85d5db 263290 devel optional 
doxygen-gui_1.8.1.2-2_amd64.deb
 2dab7035812b37b4b9b5bdcd81d59143 11284 devel optional 
doxygen-latex_1.8.1.2-2_all.deb
 0dede111e25bef641abd7f505b6c7466 2150946 doc optional 
doxygen-doc_1.8.1.2-2_all.deb

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

iEYEARECAAYFAlEvImgACgkQStlRaw+TLJyyNwCfbfL90lINk9RnFk6OBOLl/DIr
h10An1inpw1zrjlNVv8gLBBlHWWjBVn6
=siFY
-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/e1uazqu-0001zf...@franck.debian.org



Accepted zookeeper 3.4.5+dfsg-1~exp2 (source all amd64)

2013-02-28 Thread James Page
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 09:26:11 +
Source: zookeeper
Binary: libzookeeper-java zookeeper zookeeperd libzookeeper-java-doc 
libzookeeper-mt2 libzookeeper-st2 libzookeeper2 libzookeeper-mt-dev 
libzookeeper-st-dev zookeeper-bin python-zookeeper
Architecture: source all amd64
Version: 3.4.5+dfsg-1~exp2
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: James Page james.p...@ubuntu.com
Description: 
 libzookeeper-java - Core Java libraries for zookeeper
 libzookeeper-java-doc - API Documentation for zookeeper
 libzookeeper-mt-dev - Development files for multi threaded zookeeper C bindings
 libzookeeper-mt2 - Multi threaded C bindings for zookeeper
 libzookeeper-st-dev - Development files for single threaded zookeeper C 
bindings
 libzookeeper-st2 - Single threaded C bindings for zookeeper
 libzookeeper2 - C bindings for zookeeper - transitional package
 python-zookeeper - Python bindings for zookeeper
 zookeeper  - High-performance coordination service for distributed application
 zookeeper-bin - Command line utilities for zookeeper
 zookeeperd - Init control scripts for zookeeper
Changes: 
 zookeeper (3.4.5+dfsg-1~exp2) experimental; urgency=low
 .
   * d/conf_example/environment: Add missing jars to zookeeper CLASSPATH
 for 3.4.5 release.
   * d/control: Update VCS fields to be canonical.
Checksums-Sha1: 
 45cda6d5c14326b815eca082dbea77fedcb31024 2894 zookeeper_3.4.5+dfsg-1~exp2.dsc
 75de634fd01b604953e542c65b97531a6c9163b2 25720 
zookeeper_3.4.5+dfsg-1~exp2.debian.tar.gz
 95416dd6ede70e6ea8979c92838fecfe22779910 1260664 
libzookeeper-java_3.4.5+dfsg-1~exp2_all.deb
 8d81f7dd76cdcacd54be34d265ec24df935a66fb 103150 
zookeeper_3.4.5+dfsg-1~exp2_all.deb
 09c3179108e7382a3c260f185824fe4d4bdc4750 3518 
zookeeperd_3.4.5+dfsg-1~exp2_all.deb
 e5f055fe4c90e4cd96838ae2ee80aca7c51435eb 720694 
libzookeeper-java-doc_3.4.5+dfsg-1~exp2_all.deb
 35af28d3e4626efa347c7750023eee825976143a 75634 
libzookeeper-mt2_3.4.5+dfsg-1~exp2_amd64.deb
 189423621bf4a0fad1f36f9da7e29959998e27d1 72596 
libzookeeper-st2_3.4.5+dfsg-1~exp2_amd64.deb
 11f200636b5c9fdcac59c7533ac88d781ff4302f 922 
libzookeeper2_3.4.5+dfsg-1~exp2_amd64.deb
 a5b114bdcab9c3e4bed302bb37c0b18d2a456ddf 67726 
libzookeeper-mt-dev_3.4.5+dfsg-1~exp2_amd64.deb
 1707aed8fa08d8dd26740703a3f67165a29f2652 64030 
libzookeeper-st-dev_3.4.5+dfsg-1~exp2_amd64.deb
 4371972b3b8dc20c53717762c0b0fe0ce895bfa2 60720 
zookeeper-bin_3.4.5+dfsg-1~exp2_amd64.deb
 4d99bdd1518cc5f3d08807c7654e9a63dce51dde 43036 
python-zookeeper_3.4.5+dfsg-1~exp2_amd64.deb
Checksums-Sha256: 
 9acaf553327af027f8004a967cc62c0b9b612b260fd2ff44ba70309305432335 2894 
zookeeper_3.4.5+dfsg-1~exp2.dsc
 9e2d8c89dcee06b90430f854d2d473477d402e69a53245aaf92f58f7cf27498c 25720 
zookeeper_3.4.5+dfsg-1~exp2.debian.tar.gz
 7facbaa5d525018215d376b9209ad80f89ed8d202b3cb57fb9864ff4d0f86abf 1260664 
libzookeeper-java_3.4.5+dfsg-1~exp2_all.deb
 b11b573f8ea80f8f40f000c1aa680fa46e84277fd3aa11913bb0a7d08ccf8734 103150 
zookeeper_3.4.5+dfsg-1~exp2_all.deb
 005b5e9205fdd7ca855ced9ac4cf638b76c0629c62263011a4978edf4585d1bf 3518 
zookeeperd_3.4.5+dfsg-1~exp2_all.deb
 e0ca62e57fd830af86988f9d69b96b5d4211c97029c9bfda97f06a400c31eb99 720694 
libzookeeper-java-doc_3.4.5+dfsg-1~exp2_all.deb
 fa831d42cdef85e47d0d3f359bbea4a8f5214282a10a5f3b259a3bf664e3 75634 
libzookeeper-mt2_3.4.5+dfsg-1~exp2_amd64.deb
 10c330d261de011efcd09b64567e0a4b773c1d1341561109ae58460bc9c3dfca 72596 
libzookeeper-st2_3.4.5+dfsg-1~exp2_amd64.deb
 d2c608330e4d893314a0ca691d8859aff63fb388e45587ef7704ee7a28f97b16 922 
libzookeeper2_3.4.5+dfsg-1~exp2_amd64.deb
 8a0583847cfc5c7cab963be23274a3670f5ab9232c13129022b5d23e7fe3ddf6 67726 
libzookeeper-mt-dev_3.4.5+dfsg-1~exp2_amd64.deb
 9545b2296bcf41134c910b2b905978b7e5d4cab405be3925439c186877cada07 64030 
libzookeeper-st-dev_3.4.5+dfsg-1~exp2_amd64.deb
 41c2acc75af58d7f9a9528f6169f4e333660abbd36de659a32835d6f7d019b05 60720 
zookeeper-bin_3.4.5+dfsg-1~exp2_amd64.deb
 1df239a9c0536d8e1e88a26c873aacdeb742f35b27462fa1f7093676c7a4b958 43036 
python-zookeeper_3.4.5+dfsg-1~exp2_amd64.deb
Files: 
 3d4dde9bc0b8b97e4db77a97c82c7ae8 2894 java optional 
zookeeper_3.4.5+dfsg-1~exp2.dsc
 6222f90d5feaa1b680d5e026cb4764fa 25720 java optional 
zookeeper_3.4.5+dfsg-1~exp2.debian.tar.gz
 de2528468584c76bbd58c9d132039791 1260664 java optional 
libzookeeper-java_3.4.5+dfsg-1~exp2_all.deb
 8af3507f2d8380960607319e4eeba63c 103150 java optional 
zookeeper_3.4.5+dfsg-1~exp2_all.deb
 3fb005bd6106966cddfd0c4b1d148c1d 3518 java optional 
zookeeperd_3.4.5+dfsg-1~exp2_all.deb
 92e6454dd2b06bddd925ed2192ee9cfd 720694 doc optional 
libzookeeper-java-doc_3.4.5+dfsg-1~exp2_all.deb
 02335a66b32ee655d59c2eeb10010f9d 75634 libs optional 
libzookeeper-mt2_3.4.5+dfsg-1~exp2_amd64.deb
 d5eff1b000f72d1114317c8cdf33a975 72596 libs optional 
libzookeeper-st2_3.4.5+dfsg-1~exp2_amd64.deb
 

Accepted harfbuzz 0.9.13-1 (source amd64)

2013-02-28 Thread Ahmed El-Mahmoudy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 09:29:37 +0200
Source: harfbuzz
Binary: libharfbuzz0 libharfbuzz-dev libharfbuzz-bin
Architecture: source amd64
Version: 0.9.13-1
Distribution: experimental
Urgency: low
Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) aelmahmo...@sabily.org
Changed-By: أحمد المحمودي (Ahmed El-Mahmoudy) aelmahmo...@sabily.org
Description: 
 libharfbuzz-bin - OpenType text shaping engine (utility)
 libharfbuzz-dev - Development files for OpenType text shaping engine
 libharfbuzz0 - OpenType text shaping engine
Changes: 
 harfbuzz (0.9.13-1) experimental; urgency=low
 .
   * New upstream release.
   * Disable Graphite2 backend, since it is unbuildable on some archs.
Checksums-Sha1: 
 3645ddecd241a1287694d5e60d05a77da2353e19 1467 harfbuzz_0.9.13-1.dsc
 c1a0dc10bfa99104e5fe2e1bdcb85072150abf8b 896527 harfbuzz_0.9.13.orig.tar.bz2
 1d575f286af12d6aa4f5396d0397938b704e5d7c 4091 harfbuzz_0.9.13-1.debian.tar.gz
 a344db4ddd030c3fcaadcfcfca6143464f47c027 523478 libharfbuzz0_0.9.13-1_amd64.deb
 86d20bbaf6ad94a507b9843e9a586890aaa3776e 272420 
libharfbuzz-dev_0.9.13-1_amd64.deb
 35ee026412196a44aa2985aee28b577d74d66f02 299648 
libharfbuzz-bin_0.9.13-1_amd64.deb
Checksums-Sha256: 
 463859c831bae313259c5d19f1a09e6015799ae01dec1f6da70f141331329012 1467 
harfbuzz_0.9.13-1.dsc
 a3cb6b4ecf5080720186d5a61bcecde4a4cd98b56b0d685aaf63bbcf9adf8a81 896527 
harfbuzz_0.9.13.orig.tar.bz2
 1c86078ba2f206c3917033c65c547c71bf73c9bc3e0c652074127aeb560f7f26 4091 
harfbuzz_0.9.13-1.debian.tar.gz
 e73d69dc1e45905da17d3a35ef4693e9dd81f65015b7819c58b1079f7812a578 523478 
libharfbuzz0_0.9.13-1_amd64.deb
 5e2e6f7f74216c66ee750c25e6c5bd5e44b365838b4bacda79d7d2a125aa42f7 272420 
libharfbuzz-dev_0.9.13-1_amd64.deb
 4a2d9100f9549da0050e1a7e4076f4d234f775e09ea9b1afe0c512326cc8a99f 299648 
libharfbuzz-bin_0.9.13-1_amd64.deb
Files: 
 28cd0f456b562158e389eb470d98dee6 1467 libs optional harfbuzz_0.9.13-1.dsc
 00cdc6644fae1be8c1d566082286b6f9 896527 libs optional 
harfbuzz_0.9.13.orig.tar.bz2
 d05461501463d583a134f1347bc4f925 4091 libs optional 
harfbuzz_0.9.13-1.debian.tar.gz
 c973d04dc3d7f4f855bd43c081085773 523478 libs optional 
libharfbuzz0_0.9.13-1_amd64.deb
 a292b876427310b9b2323070cd2d2ba4 272420 libdevel optional 
libharfbuzz-dev_0.9.13-1_amd64.deb
 09fb1c24d3b18d06049c846e2ccfdf6c 299648 utils optional 
libharfbuzz-bin_0.9.13-1_amd64.deb

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

iEYEARECAAYFAlEvSOYACgkQcgQ2cL3l8e6+hgCgyepvfA5YCoGVt54vT9/XZ9vH
wAwAn1vkXoSN+omCL014VGTUyJ1tRa0K
=qVfU
-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/e1ub2qx-00083y...@franck.debian.org



Accepted bowtie2 2.1.0-1 (source amd64 all)

2013-02-28 Thread Alexandre Mestiashvili
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 27 Feb 2013 15:58:40 +0100
Source: bowtie2
Binary: bowtie2 bowtie2-examples
Architecture: source amd64 all
Version: 2.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Alexandre Mestiashvili a...@biotec.tu-dresden.de
Description: 
 bowtie2- ultrafast memory-efficient short read aligner
 bowtie2-examples - Examples for bowtie2,
Closes: 701686
Changes: 
 bowtie2 (2.1.0-1) unstable; urgency=low
 .
   * - d/help2man-wrapper: as kindly suggested by Andreas Tille
 Closes: #701686
 - d/rules: use help2man-wrapper instead of help2man to generate man pages
   * Imported Upstream version 2.1.0
   * refreshed patches
Checksums-Sha1: 
 b1a1d39e3d9aa05ae2f4a174d8b47a2daa487bcc 2159 bowtie2_2.1.0-1.dsc
 8e3d60d9e834c55a8381dd6b5a2fc8b34d95e35f 5534486 bowtie2_2.1.0.orig.tar.gz
 cf79aaee824fce732957d6b187a383a772b8e128 6289 bowtie2_2.1.0-1.debian.tar.gz
 4dcb3e1af03c64da6ff6e077ec2dd44aa2085939 1060158 bowtie2_2.1.0-1_amd64.deb
 0c1afaffa2ca1d84757d587acbfe3a48dab8bdae 4882646 
bowtie2-examples_2.1.0-1_all.deb
Checksums-Sha256: 
 069d3d14f8df7689b4475fccbb2b4d93e82bfb49777fe6a584a0e5297d431ed9 2159 
bowtie2_2.1.0-1.dsc
 6d24be8af7fc2b6c43e329bcfa98a9108e7f8338c6bacf651642b871b76a 5534486 
bowtie2_2.1.0.orig.tar.gz
 9b93ff50412a8e1e0d69e09b03f916ffd88fa24b1490bf424d87be077f1965f4 6289 
bowtie2_2.1.0-1.debian.tar.gz
 d080d4ddd2dc0e93ca0733017da8ca2c79392e3f724019cce7dfce6d4e26bded 1060158 
bowtie2_2.1.0-1_amd64.deb
 33eeea0349932084af9036cb44275d5039d52c2ff82d370f5772969031bad069 4882646 
bowtie2-examples_2.1.0-1_all.deb
Files: 
 39165d80cfd03b94f479876f9b23c00b 2159 science extra bowtie2_2.1.0-1.dsc
 874af34a581619af6ff04b637d3bed53 5534486 science extra 
bowtie2_2.1.0.orig.tar.gz
 85d94a31749c78b78f14db088f641079 6289 science extra 
bowtie2_2.1.0-1.debian.tar.gz
 8f74f1a96a2719257dcf5a3e7b22d205 1060158 science extra 
bowtie2_2.1.0-1_amd64.deb
 76ff62215b0760cd817aa9b61f4c8c4f 4882646 science extra 
bowtie2-examples_2.1.0-1_all.deb

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

iQIcBAEBCAAGBQJRL0mHAAoJEBz3khEbUiiwuM0QAIK0OlP9oLGZAOXtJVeaOqhl
3BMu2sxpumCzrLWGJFoQPTyO49KqciTpTE1RRRPxctldsduiaJeqV6PfNkfSgtG2
VsGx8ODuCvcPJpyh+lmMPyzTc4w7ptSVSGitnoRyNYJCADx8/1qUI8uHI8BgjaN1
/BVwbt++oI6PmnPBrz+FhJmNd9knKa5aIP22j9LsTLOmn74IiV3SnjPbEfwmG0on
r0BF8qvNhKY4dve4TaA1DXJaAX1u0J8NmG5JFWQC/aY21k8jHbzpUNe7kiy+1k8V
d25HoQqamyev0gmnDRfp2ltDfsVu5fv3IEy66vdDr1t6M8si8QmwXPy7uhlAJxfl
Tnx+1cuD3FKv4H80pYySel35cPiuHFp2Llx+e+qIcF01vEPNDb2/VMzQqvWBehz9
ynghy8k1j2Q+sPcOUbqEcjaj6BbsKI3Rthcf9tEuzZsbczxmqMN1q590E99KOsG3
YkhtkdSYe0B5cwH3ekNMI7j1XBSfr1oWze+Qmpv52ebga04zFn8q3IrUXs7Db9Kg
0B9ekaLeBbS1FddYUF18G/Rb4wVSYIbR4nV5TifFnDYI8CanoxavndlTNO/6Vk3t
3sFlzTNSd55zibD6rBY/FvgRIKFbjNq+Gij5Fc20SpS17AxwPFmpK4yPi3uBohPn
zFVmLAMnPUczFAFw94mT
=vxOs
-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/e1ub2f0-0001ym...@franck.debian.org



Accepted fcitx 1:4.2.7-2 (source all amd64)

2013-02-28 Thread YunQiang Su
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 17:00:35 +0800
Source: fcitx
Binary: fcitx fcitx-bin fcitx-data fcitx-libs fcitx-libs-gclient fcitx-libs-qt 
fcitx-libs-dev gir1.2-fcitx-1.0 fcitx-dbg fcitx-ui-classic fcitx-frontend-all 
fcitx-frontend-gtk2 fcitx-frontend-gtk3 fcitx-frontend-qt4 fcitx-pinyin 
fcitx-qw fcitx-table fcitx-table-all fcitx-table-bingchan fcitx-table-cangjie 
fcitx-table-dianbaoma fcitx-table-erbi fcitx-table-wanfeng fcitx-table-wbpy 
fcitx-table-wubi fcitx-table-ziranma fcitx-modules fcitx-module-dbus 
fcitx-module-x11 fcitx-module-lua fcitx-module-kimpanel 
fcitx-module-quickphrase-editor fcitx-tools
Architecture: source all amd64
Version: 1:4.2.7-2
Distribution: unstable
Urgency: low
Maintainer: IME Packaging Team pkg-ime-de...@lists.alioth.debian.org
Changed-By: YunQiang Su wzss...@gmail.com
Description: 
 fcitx  - Flexible Input Method Framework
 fcitx-bin  - Flexible Input Method Framework - essential binaries
 fcitx-data - Flexible Input Method Framework - essential data files
 fcitx-dbg  - Flexible Input Method Framework - debugging symbols
 fcitx-frontend-all - Flexible Input Method Framework - frontends metapackage
 fcitx-frontend-gtk2 - Flexible Input Method Framework - GTK+ 2 IM Module 
frontend
 fcitx-frontend-gtk3 - Flexible Input Method Framework - GTK+ 3 IM Module 
frontend
 fcitx-frontend-qt4 - Flexible Input Method Framework - Qt4 IM Module frontend
 fcitx-libs - Flexible Input Method Framework - library files
 fcitx-libs-dev - Flexible Input Method Framework - library development files
 fcitx-libs-gclient - Flexible Input Method Framework - D-Bus client library 
for Glib
 fcitx-libs-qt - Flexible Input Method Framework - D-Bus client library for Qt
 fcitx-module-dbus - Flexible Input Method Framework - D-Bus module and IPC 
frontend
 fcitx-module-kimpanel - Flexible Input Method Framework - KIMPanel protocol 
module
 fcitx-module-lua - Flexible Input Method Framework - Lua module
 fcitx-module-quickphrase-editor - Flexible Input Method Framework - Quick 
Phrase editor module
 fcitx-module-x11 - Flexible Input Method Framework - X11 module and XIM 
frontend
 fcitx-modules - Flexible Input Method Framework - core modules
 fcitx-pinyin - Flexible Input Method Framework - classic Pinyin engine
 fcitx-qw   - Flexible Input Method Framework - QuWei engine
 fcitx-table - Flexible Input Method Framework - table engine
 fcitx-table-all - Flexible Input Method Framework - tables metapackage
 fcitx-table-bingchan - Flexible Input Method Framework - Bingchan table
 fcitx-table-cangjie - Flexible Input Method Framework - Cangjie table
 fcitx-table-dianbaoma - Flexible Input Method Framework - Dianbaoma table
 fcitx-table-erbi - Flexible Input Method Framework - Erbi table
 fcitx-table-wanfeng - Flexible Input Method Framework - Wanfeng table
 fcitx-table-wbpy - Flexible Input Method Framework - WubiPinyin table
 fcitx-table-wubi - Flexible Input Method Framework - Wubi table
 fcitx-table-ziranma - Flexible Input Method Framework - Ziranma table
 fcitx-tools - Flexible Input Method Framework - various tools
 fcitx-ui-classic - Flexible Input Method Framework - Classic user interface
 gir1.2-fcitx-1.0 - Flexible Input Method Framework - GObject introspection
Closes: 700710 701276 701553 701558
Changes: 
 fcitx (1:4.2.7-2) unstable; urgency=low
 .
   [ Wang Diancheng ]
   * Disable debug messages, use Release build type
 .
   [ Aron Xu ]
   * Add Breaks/Replaces to fcitx-libs-gclient (Closes: #700710)
 .
   [ YunQiang Su ]
   * fix bashism problems (Closes: #701553, #701558)
   * Remove FcitxQtInputMethodProxy::CreateIC from qt symbols (Closes: #701276)
Checksums-Sha1: 
 320815e06bd04d5b4c8432aa7ac73c98a17cf7f8 3688 fcitx_4.2.7-2.dsc
 850f261924b37342c77421fc3ba9ad3a0e5c9b5d 60359 fcitx_4.2.7-2.debian.tar.gz
 c1f3328b12922ce68ae403c068b1de7a76b33bc6 25118 fcitx_4.2.7-2_all.deb
 4744bcde2117fe88a427c828dc78c55537f7f497 58338 fcitx-bin_4.2.7-2_amd64.deb
 510c2da8cf3b51836bc014bddcd465945ae6f1d5 162442 fcitx-data_4.2.7-2_all.deb
 b448d9275800d5d594cc25016562a268cf0e108a 152262 fcitx-libs_4.2.7-2_amd64.deb
 127a8ede19205770f85a136c56209909c740cf80 41170 
fcitx-libs-gclient_4.2.7-2_amd64.deb
 af5cf3a9f68b30218e6b7f7323c4924086615f66 95704 fcitx-libs-qt_4.2.7-2_amd64.deb
 788733df4d2c0d880e726fe45abcda9e131d0536 306410 
fcitx-libs-dev_4.2.7-2_amd64.deb
 b0d2369d8b7001c240987b1a12c6b9b7e59729fb 29738 
gir1.2-fcitx-1.0_4.2.7-2_amd64.deb
 fec98985181f678e53e7d811df709a7da6f8ae74 5062294 fcitx-dbg_4.2.7-2_amd64.deb
 88a659c0e9e2be217ebc6120c50466bbd3a96338 153590 
fcitx-ui-classic_4.2.7-2_amd64.deb
 d2ce5f5ca9a2d39e454f0fdee1004e034c6af3a5 23400 
fcitx-frontend-all_4.2.7-2_all.deb
 76ad1f368bca5a514578976454c1686b11bd699c 36024 
fcitx-frontend-gtk2_4.2.7-2_amd64.deb
 d03d239866e895802f5d379b0169f444f24cca9d 36066 
fcitx-frontend-gtk3_4.2.7-2_amd64.deb
 2adfdd998ef573b7fd77da547a65ec2ffa8912ee 80184 
fcitx-frontend-qt4_4.2.7-2_amd64.deb
 

Accepted chef 10.12.0-3 (source all)

2013-02-28 Thread Tollef Fog Heen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 13:56:32 +0100
Source: chef
Binary: chef libchef-ruby libchef-ruby1.8
Architecture: source all
Version: 10.12.0-3
Distribution: unstable
Urgency: high
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Tollef Fog Heen tfh...@debian.org
Description: 
 chef   - A systems integration framework, built to bring the benefits of c
 libchef-ruby - Transitional package for chef
 libchef-ruby1.8 - Transitional package for chef
Closes: 701629
Changes: 
 chef (10.12.0-3) unstable; urgency=high
 .
   * Backport fixes from 10.22 to work around API breakage in JSON gem.
 Closes: #701629
Checksums-Sha1: 
 84c3b04389100e69ed748785228f2ccbf718493a 2097 chef_10.12.0-3.dsc
 009a15f30d2bcbd5630b67e1c80f3d89fd7fdb5f 24951 chef_10.12.0-3.debian.tar.gz
 4cb0b1ce0d2a47a23a97fcfed760e149d1d94e8b 395344 chef_10.12.0-3_all.deb
 b167fde44404903167348666b4f87f6bd81d5b60 17354 libchef-ruby_10.12.0-3_all.deb
 b85507050d362dbeaad8c1e1e77232010ed6ac2a 17354 
libchef-ruby1.8_10.12.0-3_all.deb
Checksums-Sha256: 
 17382e59926c2f07291efcdbf7e35e9daead32ab38458da6f69ef35c1501001c 2097 
chef_10.12.0-3.dsc
 ce7a7adae9047f5e073382635faac5d2a46829ddf766750f8f4025cec4861948 24951 
chef_10.12.0-3.debian.tar.gz
 68ca53ac3da23b9dcd363c7e63edac1dca04879ef50419543f2944fc686a3cec 395344 
chef_10.12.0-3_all.deb
 119288b36ebf8367f54554e9456cf24a5a21acfb0501d69471677da3dffa5e18 17354 
libchef-ruby_10.12.0-3_all.deb
 6b4a3d024be0c41b7797ac7376198f633cf5eef70ebe47368233b86bcece50c4 17354 
libchef-ruby1.8_10.12.0-3_all.deb
Files: 
 0c459d9a3b2741456a9148062789dbd1 2097 ruby optional chef_10.12.0-3.dsc
 9bb808c4be28a33bc15edda93bc22b48 24951 ruby optional 
chef_10.12.0-3.debian.tar.gz
 a3b2ba5efe67c47e923c5c0810cfe6c6 395344 ruby optional chef_10.12.0-3_all.deb
 c3f6b82f93e74acc9dfcf91fc0ab5045 17354 oldlibs optional 
libchef-ruby_10.12.0-3_all.deb
 8d70b5dc6a4447aad5bdfb7eb82e335a 17354 oldlibs optional 
libchef-ruby1.8_10.12.0-3_all.deb

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

iQIcBAEBAgAGBQJRL1iJAAoJELZaSHHKGdcXo78P/i2qIZihN8yWff0SbSRgQQe5
ml9hQxdjx57vzcKQrJazP/Ew5LXAOC1mSE8lRbCO1mN12JvvUogKFQOw986KSuZ/
09etlj4Rzbo0s2l1rNd3jHDhk3DAylju8gOt4oaFSFOlrWW1lA+ba3cw6glLHfYJ
yGHxaQXnQa6CPppivOj8gxe8LzB/MGMFeN4jsCPCDR3uYaqaqD8JCWFa+iMAT3Hm
DVnOpCJnOo5FlFWWsQF9+x7xXNhmLwSXWX1/P1CPXNh+Gl8eN5NPhgCdqKseQoaZ
3aoCJ9hHQ9+iHN63FWkplvStdWtETRGBraziWl9Iu8zpN1oD8GGn+TRKmF3OF22V
gqfGHTG0bQppa3ju6ihCZOJYMNdnlLpbjMVcGMfUGvxA9A6p/IwAhqfmo0/0dz4s
8Gxd6q1gpP6rqvTDjkOPSiTkwGALjXplsvowMXZXP+leiiPYudrMYz4Qk+V3EFBa
axZ7hRPUuK1B+ou4b2Eer8UUYGqu7Z4z/JK5hz8azHtZOIxTqaPQCjZ12ktX2Gu8
t5e22y6rL0aEOhBPR6sYSpNbvQwAxwpejNiU6L12WSfveIfWOxqK2rC3dTqcLYYy
ZDdhcmnQidrhQgnjdFm4U29H+VQh6ZC60LD1n+YOzKtOlH11puztqJ1e0ST/F9RM
OAaBjkE91X/HqlIfrlpE
=EofD
-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/e1ub3b6-0005jw...@franck.debian.org



Accepted bobot++ 1:2.2.3-0.1 (source amd64)

2013-02-28 Thread Dmitrijs Ledkovs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 13:03:46 +
Source: bobot++
Binary: bobot++
Architecture: source amd64
Version: 1:2.2.3-0.1
Distribution: experimental
Urgency: low
Maintainer: Sam Hocevar (Debian packages) sam+...@zoy.org
Changed-By: Dmitrijs Ledkovs x...@debian.org
Description: 
 bobot++- IRC bot with scripting features
Closes: 366959
Changes: 
 bobot++ (1:2.2.3-0.1) experimental; urgency=low
 .
   * Non-maintainer upload.
   * New upstream release (Closes: #366959)
   * Guile 1.8 transition.
Checksums-Sha1: 
 05b988d975ac2980d5ba5a39a475822d3940b4db 1677 bobot++_2.2.3-0.1.dsc
 adf388ef9bb4c1367b25ae381a822db68125aac3 301675 bobot++_2.2.3.orig.tar.gz
 13643977d50f6196ff0e363cdf0663773121766a 3571 bobot++_2.2.3-0.1.diff.gz
 7fdadab47f9bfde064c2f70ee64993b355d9c1fc 238116 bobot++_2.2.3-0.1_amd64.deb
Checksums-Sha256: 
 134341e6af366b4e74166b9159b4cc98a063a5f7f01163870b9700ec22da2101 1677 
bobot++_2.2.3-0.1.dsc
 b45e84529b4417d31686e355951e0d4ceb7f0bb470f5c6498adb530f50a6d908 301675 
bobot++_2.2.3.orig.tar.gz
 306f60a7c5186de32d08bc5719940767e86a28a5d67029369b62e929f40b51f6 3571 
bobot++_2.2.3-0.1.diff.gz
 7e7e30c20645489478eb43f3de27a618997d88745bcaf48db9e7daf77c4667e6 238116 
bobot++_2.2.3-0.1_amd64.deb
Files: 
 c31e1300e492831dd99577f769bdfeee 1677 net optional bobot++_2.2.3-0.1.dsc
 d5c9e824a3b6383584d12a037644b03f 301675 net optional bobot++_2.2.3.orig.tar.gz
 6e1ef9267cfd16cbec3816de6a798eaa 3571 net optional bobot++_2.2.3-0.1.diff.gz
 05de614210adab6a2eebdf477f4da891 238116 net optional 
bobot++_2.2.3-0.1_amd64.deb

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

iQIcBAEBCAAGBQJRL2AeAAoJEIh7YGGLPBau0LUP/1qAcgm8s0TWJztewMX9QM6X
b5jPNZuyTksMl6EhJh7xQI5y7PK6EibTlEfvrJHOJuS26KUH+7DQJ9dbsbdugOOK
/ELJ7x9+DvGoEVZOJRXyaL4w1Z+c5CTErls4nWLIsnt08JAsnQ+IdUEO+7ADuBDV
lwkoZA0kgK8VDpwDgVZDHr2iSR4bM/X/K+RyReT5I3lLL002Fm89ZbOWoy6shrRn
ApQS/lhez+bd6c8RpJ9YZCZcSHq11B5gZYNikCX1DluSSlVQea/cPCcEWOr4FYOa
s+wZbEyu1x0QubkKB/Con7wXXXs0mcp0IBy5F3jb1LUMy1tfAZNNffoDZnQW1r0h
1al9P2iohEIbu+4SdFNE374RJro7LXPi3Y34kmP8drwLC1wf/YC+98/tfwzo4suk
w0MPvrhkiczqOPV/VjR8AqRHD5lPzku+9uxpMIPpD8y38PLp59OQAF8EJGtVUy5P
7jwn6VdfCNEXnR0yf7X0TxV3LWjwouF5N3XJsvNTdvWs7KB8kIZxfniu9XYMYUIH
489x5uj0Bvc6yCStXxVOTissGV/XPacll1DXCJPaulSKCu22WIUTMTIfDHEHGRb+
GCW6mhBo2ngqvvKeEDuthtgFqsZ4VUzEycdy+wpjEsH6+gOwkCsSMGvGd3GBd15U
uyOPCI+x3BTRnQux2et5
=4kmY
-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/e1ub4x7-00063a...@franck.debian.org



Accepted dicom3tools 1.0~20130226-2 (source amd64)

2013-02-28 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 13:55:53 +0100
Source: dicom3tools
Binary: dicom3tools
Architecture: source amd64
Version: 1.0~20130226-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 dicom3tools - DICOM medical image files manipulation and conversion tools
Changes: 
 dicom3tools (1.0~20130226-2) unstable; urgency=low
 .
   * New upstream
   * Fix issue with PBM/PPM conversion
Checksums-Sha1: 
 2331023dd9b67ac9afc77510425bd50657128d12 2103 dicom3tools_1.0~20130226-2.dsc
 10203b1e270dc9718aa3b6fa45e41624247cc596 908913 
dicom3tools_1.0~20130226.orig.tar.bz2
 dd5fdde8e241edc0ac792b3ef831d085396abd79 11365 
dicom3tools_1.0~20130226-2.debian.tar.gz
 4c6c357bda31deb1cc055a2bb69b48abb709371b 7808370 
dicom3tools_1.0~20130226-2_amd64.deb
Checksums-Sha256: 
 a5a0ede2a4450cd0a1796e5764b1dc21869ea2b65762266dd470dfb874b54b2c 2103 
dicom3tools_1.0~20130226-2.dsc
 d4c84ee9f74713d160a793308a8eab2ab589626d3c0522d35620a9bde4b4ecc9 908913 
dicom3tools_1.0~20130226.orig.tar.bz2
 59b1e5a8cae1f22dda9d82bbef61dfd4b0327c428c88dc2fe505252fec25d236 11365 
dicom3tools_1.0~20130226-2.debian.tar.gz
 a9f16741ca4ddb30b496e4d81a38235d5d00f9c62268ac12e96af8520016a9f5 7808370 
dicom3tools_1.0~20130226-2_amd64.deb
Files: 
 ee9229f2afc9ceafbdcdbac35d5bcea5 2103 graphics extra 
dicom3tools_1.0~20130226-2.dsc
 b5ee51a349c945b332cbced711faae40 908913 graphics extra 
dicom3tools_1.0~20130226.orig.tar.bz2
 a48e3cfe1ada6c586e863fb673bccce5 11365 graphics extra 
dicom3tools_1.0~20130226-2.debian.tar.gz
 642cca3a88748204b828f5877adc8209 7808370 graphics extra 
dicom3tools_1.0~20130226-2_amd64.deb

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

iQIcBAEBAgAGBQJRL1/ZAAoJEAFx4YKK4JNF4jgP/0xNiVjamoJ9B2IifJ3Ttiwo
Kf1GCjr1GgWg/CfU/vVtp8V3RoqqvsG6e82OJLcC6OVUGOpHUls2d3LifVL/rprv
scRukbiU+Ajf9ru0IlXrR/dAAThWw1EO6zwxMcDop4UeG5YSlPjtZsA/3p+mYpSl
NGWWOlWO2YtLvVSljpx7kNGHCH1jw5tKw4lDMQpRBgXnqKeEzlMiNRvUnCp+F4u+
Vr/4/rlkd+W1Gcozwg2o7vekYlIFVyQCNB+P2j6UhWl7iLzbGQ5gpVtZ4+bcTiG+
QmWj1h6Cv5tVRt32l4TCLB6s8Cl6j8OOcZJEnVUs1Wi1OeGXPAJ6NIAWGXh3HQ7i
8o6o9xIiL9b/+DiLIUc1eD0G5swKhcDLj6kdftiLDGNxNsf3wPfXWXaT9prl4I5o
rbHnx5OoGRcJzaShGGiFapNwYVzh/uvMcLl7o/Ac7Ot0KMA2dojs09sm9Tzf8UEM
rSCq6jIs4UT75Yb6e3xwZucbGWsx8VruYIEF23pwdJamNdkbHLgGMRD4oHgalhFk
gAP5LUnx71EaR1+yvMTfESWgLgELF4PHKgTOG2H2734u37+BUhaSo/tH7DyMYWu2
/hrRuJghPPbaeC5zg7ULl0/a44MaC/L1rodaNI8UaRdyGFaDtHu/xSdBFDfgUYFC
rXwjXuHGCUqHa1i2Hf2n
=rJar
-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/e1ub4xj-00069q...@franck.debian.org



Accepted python-defaults 2.7.3-11 (source all amd64)

2013-02-28 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 14:43:06 +0100
Source: python-defaults
Binary: python python-minimal python-examples python-dev libpython-dev idle 
python-doc python-dbg libpython-dbg python-all python-all-dev python-all-dbg
Architecture: source all amd64
Version: 2.7.3-11
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 idle   - IDE for Python using Tkinter (default version)
 libpython-dbg - debug build of the Python Interpreter (version 2.7)
 libpython-dev - header files and a static library for Python (default)
 python - interactive high-level object-oriented language (default version)
 python-all - package depending on all supported Python runtime versions
 python-all-dbg - package depending on all supported Python debugging packages
 python-all-dev - package depending on all supported Python development packages
 python-dbg - debug build of the Python Interpreter (version 2.7)
 python-dev - header files and a static library for Python (default)
 python-doc - documentation for the high-level object-oriented language Python
 python-examples - examples for the Python language (default version)
 python-minimal - minimal subset of the Python language (default version)
Closes: 700716
Changes: 
 python-defaults (2.7.3-11) experimental; urgency=low
 .
   * Add Multi-Arch: same packages libpython-all-{dev,dbg} (not yet built,
 python2.6 doesn't have support for multiarch).
   * python-dbg: Stop providing python-gdbm-dbg, python-tk-dbg. Closes: #700716.
   * Add a libpython-stdlib package (not yet built).
Checksums-Sha1: 
 f5a8c2a6644b14176e0a876dbc25484bd5b236d6 1664 python-defaults_2.7.3-11.dsc
 00eb3c7523a39e9e6b2e94caebf38a14c88abf90 880161 python-defaults_2.7.3-11.tar.gz
 220cd7c2c786b8123b481bd7141da2fb868c0a58 852 python-examples_2.7.3-11_all.deb
 5818e5daf1f755f7013ca9d8c32c8bde2f9822b7 3056 idle_2.7.3-11_all.deb
 491900e2bd069a93a1fabeac03b58e575950217f 22894 python-doc_2.7.3-11_all.deb
 a9328c4d0ab150c537e40c69c5865486c13a4123 184250 python_2.7.3-11_amd64.deb
 afd46c4049b3def3185bfcfaccaff13085a74dfe 42002 
python-minimal_2.7.3-11_amd64.deb
 dc22fe6cdfb0f4123905568b2f5e1a978386e111 1088 python-dev_2.7.3-11_amd64.deb
 f91eee39e785652c8ec6cb967eb03ea25aae991c 19406 libpython-dev_2.7.3-11_amd64.deb
 1b7dc9e4f58f8ceb2c799c6a9e748a2a3322f60d 1186 python-dbg_2.7.3-11_amd64.deb
 0f4aab3dcc4828ef870cf296b2924e7491fd80d0 19350 libpython-dbg_2.7.3-11_amd64.deb
 4a75d974736b7ee6b74eb87c4900b61f06491291 880 python-all_2.7.3-11_amd64.deb
 67c36e5505b3db733ae432d28620b3c7b9c0b37b 896 python-all-dev_2.7.3-11_amd64.deb
 dc13e6be430eebb5c6a2db17531f084b4fab18b6 902 python-all-dbg_2.7.3-11_amd64.deb
Checksums-Sha256: 
 5261ba6e8e944dceb7932f1395b41aa54680ad4428d7b762192d94bd9d8cbf4d 1664 
python-defaults_2.7.3-11.dsc
 08431cd771492d6149e21f0874e2c26da8169f29d706937beb3e52cb6f93b5fc 880161 
python-defaults_2.7.3-11.tar.gz
 bf3554d04d1a3bd9930d01b2961265b789d6319dac9faec19b5a5f5c0ff7e06e 852 
python-examples_2.7.3-11_all.deb
 2266405e9c2a2331e7cbe6776260b16e6e2d28a8fb84fb876fa0ab0b21d9f143 3056 
idle_2.7.3-11_all.deb
 ea20bca69306af971ab393b2c9c20a80b9d816253c642fd22ce1c6b33418da08 22894 
python-doc_2.7.3-11_all.deb
 5e4650cf135f69cd38a7c5c8b063cf89a427c3429dc845511f4c5c519faea1d0 184250 
python_2.7.3-11_amd64.deb
 8176ad179c8ff1fe4d618196b4a6a5631470dc3f9713bc20d88b51a9c5eccc65 42002 
python-minimal_2.7.3-11_amd64.deb
 a5dacc66e7fd6407f98b729bb369a6dee5ab0c0581d50a8eac53b1a5eace6cb4 1088 
python-dev_2.7.3-11_amd64.deb
 151c32c5ca27ae3c0a82bf214afa560b1efa495e0959186edb726b17659d7bcd 19406 
libpython-dev_2.7.3-11_amd64.deb
 5c7219bb4acef22d427e4fec1ccb7d73cea375b3a1d17bf8316ac7459267a93b 1186 
python-dbg_2.7.3-11_amd64.deb
 309c262d461768945c900fb9dbe7c4ccae55b24db7f1afaa0a3f103ded2972ce 19350 
libpython-dbg_2.7.3-11_amd64.deb
 6bf0fa9c22f178ac5a9486aba0a684fdcd4fbc44a18efe55658012fd6ca52003 880 
python-all_2.7.3-11_amd64.deb
 d30c03e2a212eaeda33d9840a09b095a7f1b15acabc394a209a116085d661a04 896 
python-all-dev_2.7.3-11_amd64.deb
 98c8bdf0d76822fb30713caa7c6ff57c2e23d9923338cc422b79bedc3d083e9a 902 
python-all-dbg_2.7.3-11_amd64.deb
Files: 
 76e1554d2dc929a16ebb7815f2301730 1664 python optional 
python-defaults_2.7.3-11.dsc
 460c0867f258a546022976a62eb453f8 880161 python optional 
python-defaults_2.7.3-11.tar.gz
 30057760e8cafd836e7c7da2d78b09b2 852 python optional 
python-examples_2.7.3-11_all.deb
 396957d2b7171628fb17f302e32ec937 3056 python optional idle_2.7.3-11_all.deb
 ae0fc16cbe1f9b8bbe19cc59c0a0f29a 22894 doc optional python-doc_2.7.3-11_all.deb
 d2e89ef21ce07d6b8d22e1204b02e1f4 184250 python standard 
python_2.7.3-11_amd64.deb
 69900706e406f5c97c6bdffe16afffc6 42002 python standard 
python-minimal_2.7.3-11_amd64.deb
 330e4fa0450b54a4fbd17e7bf209560b 1088 python optional 
python-dev_2.7.3-11_amd64.deb
 c0feb3bbda6de346b2be79d3f54642ec 19406 python optional 

Accepted squid3 3.1.20-2.2 (source all amd64)

2013-02-28 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 23 Feb 2013 13:44:48 +0100
Source: squid3
Binary: squid3 squid3-dbg squid3-common squidclient squid-cgi
Architecture: source all amd64
Version: 3.1.20-2.2
Distribution: unstable
Urgency: low
Maintainer: Luigi Gangitano lu...@debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 squid-cgi  - Full featured Web Proxy cache (HTTP proxy) - control CGI
 squid3 - Full featured Web Proxy cache (HTTP proxy)
 squid3-common - Full featured Web Proxy cache (HTTP proxy) - common files
 squid3-dbg - Full featured Web Proxy cache (HTTP proxy) - Debug symbols
 squidclient - Full featured Web Proxy cache (HTTP proxy) - control utility
Closes: 701123
Changes: 
 squid3 (3.1.20-2.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Add fix-701123-regression-in-cachemgr.patch patch.
 Fix missing bits in the fix for CVE-2012-5643 and CVE-2013-0189 causing
 cachemgr.cgi crashing when authentication credentials are supplied.
 Thanks to Amos Jeffries a...@treenet.co.nz (Closes: #701123)
Checksums-Sha1: 
 c2a4612eef2d0b9ab468f18657e6315c9757c1cd 2076 squid3_3.1.20-2.2.dsc
 cd1ee6ae1244e920bbe73dc9db62cbb2d3673d9a 22415 squid3_3.1.20-2.2.debian.tar.gz
 b47f8ee7bd06ee984e6d95cfcb7c7a26978a55d8 203906 
squid3-common_3.1.20-2.2_all.deb
 85183671e06dd115bf26577266914560b715560b 1643698 squid3_3.1.20-2.2_amd64.deb
 7ceeeb3a3a9e835578e4a83434d7c5f2e29abb31 6962928 
squid3-dbg_3.1.20-2.2_amd64.deb
 b510e96e5e2d4f946fa6edf5a342c052995d3fce 113666 
squidclient_3.1.20-2.2_amd64.deb
 2c531db5b3b92c9b7d1a904a18d46fa8be6eb56f 116520 squid-cgi_3.1.20-2.2_amd64.deb
Checksums-Sha256: 
 9896e0b0f63c690943b05128c36bbf0b12c6443a7f2afc8f58236570cb9107dc 2076 
squid3_3.1.20-2.2.dsc
 3aa9ba3e69b2bebced42f6721ee7776e795d208b0587f9fa00d56272cda48f1c 22415 
squid3_3.1.20-2.2.debian.tar.gz
 d8200297514a40c7e90e636d4c7163d104e57d47be7f88139af8a493aed15506 203906 
squid3-common_3.1.20-2.2_all.deb
 fdaa585a9e5a51ffde269b805b1db0c83cdffe7e2dd471f4f1564ba0d44151f6 1643698 
squid3_3.1.20-2.2_amd64.deb
 ce402c1a90baa4fa368cfaea2d42ea5af0e5ac791a749ae3e67bba5cc68a5c02 6962928 
squid3-dbg_3.1.20-2.2_amd64.deb
 5c03100fb2a393f52ce56c23805b8022a240f7f7a9c5f340a755865d24036417 113666 
squidclient_3.1.20-2.2_amd64.deb
 baf39a95e79c930c81029c973c5ffc78cf270f6b185d412eec6649a793a18617 116520 
squid-cgi_3.1.20-2.2_amd64.deb
Files: 
 fd74e717fd86c7afba3e0a830849106a 2076 web optional squid3_3.1.20-2.2.dsc
 5a47a00be946d8bec566eb98bf29b2fd 22415 web optional 
squid3_3.1.20-2.2.debian.tar.gz
 a039d1082a5cdb5e5a871a362e75c2b2 203906 web optional 
squid3-common_3.1.20-2.2_all.deb
 702bc5d4fb8b20ce5c6e8fa37ebaac95 1643698 web optional 
squid3_3.1.20-2.2_amd64.deb
 c963802de6dcbdf753c7e7dd1b601f47 6962928 debug extra 
squid3-dbg_3.1.20-2.2_amd64.deb
 da9c8b57576f9ccde8ff4a71d22d4db8 113666 web optional 
squidclient_3.1.20-2.2_amd64.deb
 23a166770b3bfa275e8da34f7c1c2413 116520 web optional 
squid-cgi_3.1.20-2.2_amd64.deb

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

iQIcBAEBCgAGBQJRKM8mAAoJEHidbwV/2GP+fTMP/j6jrvYj5gL4kIGhfYZXcoVI
ihpWzmdpKY7R6UX6mHuC79BtHjsGcPbnOeOAmGiuFRxiDennl5IvwXtxYVxxpxNT
6GkZMP2COXBqmgiHD0Vx3di5Z8VDmEFQgfskNfbxXVaFzc+Lj8qdHobCGDUWHqEk
eWu4OXs5i19HbdwAl1oce4B75HqSQX72z5YZ00RKmZNiEEn+pa89WyOP7ngV3q1c
1+JN114LdyqJdZ64q1Y81sd2kGdHFL/Zfwo31H/Acvb0OHeIv7JfMzRRYUmZO/yF
HvebGaPGczVgdC5ONTShPfg1I+XDwABsIRbzdMRSYiS5RlH6GeNG6h1ACxN91bo1
o6/lyZlsnok+zCaxeWpRJhkfBo9spwsSnYHvK3DFYfIvrkl3WNJzroNhQzw8hpiG
BSJ2SWx1KqtSHCKvPhzo1puK4DI2cLAREOjootIVWbamlpaCe1rg2GHJ953p7wju
LKsSIaWa9uKVrEqWzlZvGtmfHlm7GdXEhvFigheJHsLBIv7k9VLHew6rQOHt+G+r
Jm+xyzs6ZvkC0Ig15HlK7dq2fwulpKll7rWlUFExoch/R2QtQgsvss1zPCuMw5l9
BWKgp181dVbBqcRCvy3Uazm0O1bYWFXeQQ7CdhTBijGvWEAgjZdTy+Bwc2WwsoYp
RTRDsYgSgbMLmT++0Hog
=BJaI
-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/e1ub50o-0005ql...@franck.debian.org



Accepted python-defaults 2.7.3-12 (source all amd64)

2013-02-28 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 15:58:09 +0100
Source: python-defaults
Binary: python python-minimal python-examples python-dev libpython-dev idle 
python-doc python-dbg libpython-dbg python-all python-all-dev python-all-dbg
Architecture: source all amd64
Version: 2.7.3-12
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 idle   - IDE for Python using Tkinter (default version)
 libpython-dbg - debug build of the Python Interpreter (version 2.7)
 libpython-dev - header files and a static library for Python (default)
 python - interactive high-level object-oriented language (default version)
 python-all - package depending on all supported Python runtime versions
 python-all-dbg - package depending on all supported Python debugging packages
 python-all-dev - package depending on all supported Python development packages
 python-dbg - debug build of the Python Interpreter (version 2.7)
 python-dev - header files and a static library for Python (default)
 python-doc - documentation for the high-level object-oriented language Python
 python-examples - examples for the Python language (default version)
 python-minimal - minimal subset of the Python language (default version)
Changes: 
 python-defaults (2.7.3-12) experimental; urgency=low
 .
   * Move python-docutils to build-depends (from build-depends-indep).
Checksums-Sha1: 
 8607912e2f93f67b75512dea001e3e1463a9ce3b 1664 python-defaults_2.7.3-12.dsc
 cdfe241bec1622075420dac84850be9c4256ebf2 880225 python-defaults_2.7.3-12.tar.gz
 9543700dea1452a9091d6eba7377f8f107b04a07 858 python-examples_2.7.3-12_all.deb
 528448d687551e2e599a2f50efb5d383abe590c0 3056 idle_2.7.3-12_all.deb
 fcfc077b0b33f9d81eccc3404d80d40042073134 22918 python-doc_2.7.3-12_all.deb
 98a32b961d7cac94d6692b21f4e74241d0008b90 184264 python_2.7.3-12_amd64.deb
 1d95f53dda7017502d13acf0524cb65d6f45a891 42028 
python-minimal_2.7.3-12_amd64.deb
 84f652531249ce68bb5ced294a68904a500f4fae 1090 python-dev_2.7.3-12_amd64.deb
 ac84ea76b6f63557955e8c1b15aacb70b60416e8 19426 libpython-dev_2.7.3-12_amd64.deb
 e5d313a427c8a2afa3df193ddf27e1b5bef67ec5 1194 python-dbg_2.7.3-12_amd64.deb
 2b93588194d5fdcf1833c541e8c890c6fbc61d39 19370 libpython-dbg_2.7.3-12_amd64.deb
 1ecb7d4124e88319f36e10d866f850de57666980 884 python-all_2.7.3-12_amd64.deb
 941cd7df99c4a52b4dc640040a2481974caab089 900 python-all-dev_2.7.3-12_amd64.deb
 7f65d9c574ae132cd94ba87ba1071e8faf9569ed 904 python-all-dbg_2.7.3-12_amd64.deb
Checksums-Sha256: 
 7cf0e791d8675c908f740c21744d0fc3d4d4d7085400796b4b80c6108f1aab68 1664 
python-defaults_2.7.3-12.dsc
 30074baba58f4e270226d3d9bb6d4bdb9fdaffe3214a4da65a2af49002a5435c 880225 
python-defaults_2.7.3-12.tar.gz
 157b0cda2fa8b1d8efc0c7d8b403ea08f970e4e88813656eb99a51f05c1572e0 858 
python-examples_2.7.3-12_all.deb
 2a15df7710bb300f4a30abaf28464f4b93a510635162b49a7f22ea93982a68ef 3056 
idle_2.7.3-12_all.deb
 dcee7aa71a09c21b7084dc4d2f44e5918670f774f6ab9ccfa7ece6b78a1652f8 22918 
python-doc_2.7.3-12_all.deb
 92259544b3d5b288ff66f018439f5fcfde136b6548400a30b4aed9241529bca8 184264 
python_2.7.3-12_amd64.deb
 8ba8cab522f7b1ddd6cc9843cd484f7d7e3275aa0381161a9f05876632f35e5a 42028 
python-minimal_2.7.3-12_amd64.deb
 9c046a31c6149322aba8cd7842570722cbf453e1f7d02b634b520096ef444357 1090 
python-dev_2.7.3-12_amd64.deb
 a0474a1303c3a19ef4b5ced7a8f39f96d868fb99b290031aacb479cf78a463ce 19426 
libpython-dev_2.7.3-12_amd64.deb
 e2dae6e4534cf1d40cd648e2e092979211dc7734db16eec69ecf189580e6c11d 1194 
python-dbg_2.7.3-12_amd64.deb
 e3e833da22d3bfd0d779701db8f44b64c197e2b905e3f2aa5312d1d6c5dea4a9 19370 
libpython-dbg_2.7.3-12_amd64.deb
 2373c81cd10aa0937431f14d210177d7d7fe67b76651a104cf77f27144421431 884 
python-all_2.7.3-12_amd64.deb
 a1d378d0d3eb6d1cb903bf082b051eb3386181dafe304ee20f0336a8b8961eec 900 
python-all-dev_2.7.3-12_amd64.deb
 30b38f5c3ef73404c1a5458dc45080af0151b6a9a05ba8123a47bff3d3c6dc4d 904 
python-all-dbg_2.7.3-12_amd64.deb
Files: 
 218232bbcd161d5e615d37bfd749092e 1664 python optional 
python-defaults_2.7.3-12.dsc
 1d996c82dfc363b7ff0fb178177fa315 880225 python optional 
python-defaults_2.7.3-12.tar.gz
 61612c8565dfb6dd3ce368d0f5920e40 858 python optional 
python-examples_2.7.3-12_all.deb
 499a3313bb2b8eb817e13e5f26266cab 3056 python optional idle_2.7.3-12_all.deb
 e23273318af8da2d907ef7f699468b2e 22918 doc optional python-doc_2.7.3-12_all.deb
 88b0b64a9dec63ffdd0c6587e76324d7 184264 python standard 
python_2.7.3-12_amd64.deb
 359840970c447c5c864408a39119467b 42028 python standard 
python-minimal_2.7.3-12_amd64.deb
 886d05d125baf29db872ef553c2f5fd2 1090 python optional 
python-dev_2.7.3-12_amd64.deb
 8c7d861847536cd63a28f1a5aefbe3a1 19426 python optional 
libpython-dev_2.7.3-12_amd64.deb
 c8f8ba52ada8df5bd25707fd7f8d2c6b 1194 debug extra python-dbg_2.7.3-12_amd64.deb
 4257c63b5046a01ff1c6778d57a55c88 19370 debug extra 
libpython-dbg_2.7.3-12_amd64.deb
 

Accepted libapache2-mod-rpaf 0.6-9 (source amd64)

2013-02-28 Thread Sergey B Kirpichev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 19:45:11 +0400
Source: libapache2-mod-rpaf
Binary: libapache2-mod-rpaf
Architecture: source amd64
Version: 0.6-9
Distribution: unstable
Urgency: low
Maintainer: Sergey B Kirpichev skirpic...@gmail.com
Changed-By: Sergey B Kirpichev skirpic...@gmail.com
Description: 
 libapache2-mod-rpaf - module for Apache2 which takes the last IP from the 
'X-Forwarded-
Changes: 
 libapache2-mod-rpaf (0.6-9) unstable; urgency=low
 .
   * Readd patch 010 (removed in QA upload), LP: #1106821
   * Revert back Homepage: and watch file.  http://stderr.net/ seems
 to be alive.
Checksums-Sha1: 
 0030552da7cfbbd35397c1c9b69e7aa9dcfd076f 1963 libapache2-mod-rpaf_0.6-9.dsc
 a5c2099840b014db16037f329e60f91dd5c7f0e4 5913 
libapache2-mod-rpaf_0.6-9.debian.tar.gz
 8821f9764e3d30d06d63f7f6e59645354ee80c34 10386 
libapache2-mod-rpaf_0.6-9_amd64.deb
Checksums-Sha256: 
 e3f0ef65314041669fed83915e7cf81c44351875a0570c0e5b6ff0be84e79381 1963 
libapache2-mod-rpaf_0.6-9.dsc
 ed0123bad3a4018736d2cd52056e6c6187847e8cc4e70d569f7fd9f726fc9e56 5913 
libapache2-mod-rpaf_0.6-9.debian.tar.gz
 15f954360ae95e3737f73f65d41be2cffd0874751af09c9e0b4818a8dea7a4b2 10386 
libapache2-mod-rpaf_0.6-9_amd64.deb
Files: 
 a7eb53ff25ce6638befc8457c3ce68b0 1963 httpd extra libapache2-mod-rpaf_0.6-9.dsc
 17b3484aa0040a964f91179167318bd9 5913 httpd extra 
libapache2-mod-rpaf_0.6-9.debian.tar.gz
 acb176d3fb016464af78575bcb749366 10386 httpd extra 
libapache2-mod-rpaf_0.6-9_amd64.deb

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

iQIcBAEBCAAGBQJRL4n2AAoJEDnJoLZAJirwGagP/Akzvb5n4Ua1Ye8+DleouleC
xkTqJUkDXEuJnCVsqzwMlj92CEYjwutoFHfyfXXKMEEcgjtVPpyvyAwEipSaxmA4
Yq3fS6h3ybnOP5uRncEVBhHzlVL7jQY1IBkpNAfPKbPDFFj9RxrUTzTzrvEYoI5M
dMVl6PTwCVxRcck12GhbiPBRXNV5iN3bWzZpHsuwxtdZnCO3LjDP2Zf7CuoESAYx
DgOLGLiOSLr5oWZFzSUmDzminJcRV8kCp4CqhrHxrIaAQjlSJet5zsijFKAJCa5m
iD847Ks8WXlEQQZDh5fQ8IJ8KYGVNzkf/h5kFBq3YXHxiCC7PMxHvh0ABhEJEzTG
jAafUAIgx2vcKIcYLgGro4EQFq51u3asvt05PHNPHxW+expZyEwGXEXsyNLom+QE
cjvXT+GUmJxQgPMHdpSPpvR17AhGkPcGOsskjmmYkecr5BLPcwFQaxb14NANa2vW
kWSn2PneRUWzzlDRnEX46fAplgiBrEWRDRujulPM0MNI/HrsCC94h/V+jRWNjLUd
6StWGGOLxR8lSxzUbr6jap0AEAmU/sTOfblzRumkShJg08XmjaN9QveX+bNCDR0L
kTZg53+0PgEeQV+K3gEyVGLQd2cSGLvig+KwMVLfoDLMEM+fKljsJJmBI9j47N/P
eOXuhDcolGI+Oduu0m8t
=TqoP
-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/e1ub8hm-0001l4...@franck.debian.org



Accepted python-defaults 2.7.3-13 (source all amd64)

2013-02-28 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 16:46:08 +0100
Source: python-defaults
Binary: python python-minimal python-examples python-dev libpython-dev idle 
python-doc python-dbg libpython-dbg python-all python-all-dev python-all-dbg
Architecture: source all amd64
Version: 2.7.3-13
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 idle   - IDE for Python using Tkinter (default version)
 libpython-dbg - debug build of the Python Interpreter (version 2.7)
 libpython-dev - header files and a static library for Python (default)
 python - interactive high-level object-oriented language (default version)
 python-all - package depending on all supported Python runtime versions
 python-all-dbg - package depending on all supported Python debugging packages
 python-all-dev - package depending on all supported Python development packages
 python-dbg - debug build of the Python Interpreter (version 2.7)
 python-dev - header files and a static library for Python (default)
 python-doc - documentation for the high-level object-oriented language Python
 python-examples - examples for the Python language (default version)
 python-minimal - minimal subset of the Python language (default version)
Changes: 
 python-defaults (2.7.3-13) experimental; urgency=low
 .
   * Always build the policy files.
Checksums-Sha1: 
 d2b867e60dc42acbce5063f7a8ab6e030c089ae5 1657 python-defaults_2.7.3-13.dsc
 4c55d68002d14e1a40cf8d8d161016d0e5188641 906600 python-defaults_2.7.3-13.tar.gz
 2ecf87398c7e8228053b851641dfb015e3c6fd33 858 python-examples_2.7.3-13_all.deb
 16832188946965273d9ef5c20fd02eb9e9d56125 3050 idle_2.7.3-13_all.deb
 4460ff2f8b9b9974d34aa81f69dda9d671d6fbc7 22944 python-doc_2.7.3-13_all.deb
 6eee58872818a55ee49f0711ec25984c52bfd091 184312 python_2.7.3-13_amd64.deb
 19b0d01cd43eba1382ba6e7342c33ebed2de7254 42048 
python-minimal_2.7.3-13_amd64.deb
 967227e62cf910b8c5ed1c5f50af1239371de662 1088 python-dev_2.7.3-13_amd64.deb
 291924a985e6f3113d6ec7e4abcc7fdc5c51e8a8 19458 libpython-dev_2.7.3-13_amd64.deb
 321156572785c1bb249f64ff902655c2b4f82026 1188 python-dbg_2.7.3-13_amd64.deb
 fbea6e0bb874a450bbdcfc2226c018bf16ec118d 19396 libpython-dbg_2.7.3-13_amd64.deb
 94114f638bb1cb4247d9a6281db21db4ec36fcb7 880 python-all_2.7.3-13_amd64.deb
 bdb0835ebfd6f740dfdf9b6ea3e2993eebd00120 896 python-all-dev_2.7.3-13_amd64.deb
 4b13d3d4b8efa82182682e24d78dec78bcfc3845 904 python-all-dbg_2.7.3-13_amd64.deb
Checksums-Sha256: 
 ab3239265a9761c7fcc55716aab5163ddbba1d9bba1b4efea7203c51ea02e8a4 1657 
python-defaults_2.7.3-13.dsc
 530f64fc3188548bdd55c0567b5a16004211e917712d2c40da677e2f0f489b90 906600 
python-defaults_2.7.3-13.tar.gz
 c85f5219666ceb81c161aefeda2887c5cb9654d4142c8b0963a5f705114b 858 
python-examples_2.7.3-13_all.deb
 c66a2076af85e64da7774294f66cd33c6efbc6092b368c57d82c88311658e38f 3050 
idle_2.7.3-13_all.deb
 c5a0c2d61ce91c77374aac8786fa088b7d3bfc4c53367464f8e2fa901eb531d2 22944 
python-doc_2.7.3-13_all.deb
 3639fdffd1534a00198e6dc2fe55fca98ebc1c4836876e452a33e32b0972a57b 184312 
python_2.7.3-13_amd64.deb
 ec5b37269a3f42b39b927928c065933a28596d2926f08ba5dcc3ae268bd78a85 42048 
python-minimal_2.7.3-13_amd64.deb
 0666b66f7483ea26f60932b583d39ea31e3b52c31ae98956962446a482729eb2 1088 
python-dev_2.7.3-13_amd64.deb
 c2a3d970957bfa4de0c78a2faa00466f6d1894cfefce1e5a60997284f05fc28f 19458 
libpython-dev_2.7.3-13_amd64.deb
 fdb8388610d0f7f1cd8942fca499141aa6b86d242ca98a0e80b7a04b38b66fa2 1188 
python-dbg_2.7.3-13_amd64.deb
 0cb902044ebe447da3debf91777912f5257cd26e5a651b06c3bf4329f6be5b39 19396 
libpython-dbg_2.7.3-13_amd64.deb
 0ac8206d471566f829ee0a235bd6ee3a00d255a43e8c97104235b0b70c764dae 880 
python-all_2.7.3-13_amd64.deb
 b9f87f85d1a7414f2a5e6ee6294229f6110aa66d3f7a8524889212b816248022 896 
python-all-dev_2.7.3-13_amd64.deb
 712d9bd6fb04ca2a06af67769b8694709c60263d40873c6a8092c7b313f0a4bf 904 
python-all-dbg_2.7.3-13_amd64.deb
Files: 
 c9de03fa6283c8285e670c87e486e78c 1657 python optional 
python-defaults_2.7.3-13.dsc
 ee080a062c18f4c1980927ad998370c5 906600 python optional 
python-defaults_2.7.3-13.tar.gz
 de784b043780f97b53c0dc060f8da61e 858 python optional 
python-examples_2.7.3-13_all.deb
 b9e1f5b5988ce69d7c5631faaf1b3f38 3050 python optional idle_2.7.3-13_all.deb
 b5cd614a161c95240ae11ad7e1a942c8 22944 doc optional python-doc_2.7.3-13_all.deb
 16a8a930e2295f8a043c95729727a570 184312 python standard 
python_2.7.3-13_amd64.deb
 7c433d4d050a9db088cd00a5418d4b39 42048 python standard 
python-minimal_2.7.3-13_amd64.deb
 ed4f8859178a57d94677c71a644c5769 1088 python optional 
python-dev_2.7.3-13_amd64.deb
 294b658df43efd6a3f82f9230dcce634 19458 python optional 
libpython-dev_2.7.3-13_amd64.deb
 279594697194ea131fe41dce4bd38490 1188 debug extra python-dbg_2.7.3-13_amd64.deb
 096f35cdb5947d00ea3efc447c5455fb 19396 debug extra 
libpython-dbg_2.7.3-13_amd64.deb
 f271ed8ba8241336bb10e6da241e05c8 880 python 

Accepted rrep 1.3.4-1 (source i386)

2013-02-28 Thread Arno Onken
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 02:23:39 +0100
Source: rrep
Binary: rrep
Architecture: source i386
Version: 1.3.4-1
Distribution: experimental
Urgency: low
Maintainer: Arno Onken asn...@asnelt.org
Changed-By: Arno Onken asn...@asnelt.org
Description: 
 rrep   - recursive pattern replacement utility
Closes: 701416
Changes: 
 rrep (1.3.4-1) experimental; urgency=low
 .
   * New upstream release (Closes: #701416)
   * Changed Build-Depends debhelper to = 9.
   * Changed debian/compat to 9.
   * Updated Standards-Version to 3.9.4.
   * Fixed copyright license text.
   * Changed Maintainer to Upstream-Contact field.
   * Updated Format field.
   * Removed dpkg | install-info from Depends.
Checksums-Sha1: 
 d1077ae347156768f470cd94b377f900c37f0779 1691 rrep_1.3.4-1.dsc
 bd4b627104669d41a5891f7475cbbde4fb44a536 930662 rrep_1.3.4.orig.tar.gz
 04bb697748d0150f619ac8febc5b793ca2107f87 2025 rrep_1.3.4-1.debian.tar.gz
 5aae3f44d0bd40969ff847f37ee8aacda85a40fe 62070 rrep_1.3.4-1_i386.deb
Checksums-Sha256: 
 e730e55504d2f9928fe74d930e304b8abd1b595e22d6d2b96a018bff7d90ede8 1691 
rrep_1.3.4-1.dsc
 60709fe5993dc2d7d7d42d297917df69859757e036cc392b11c96522ead91f6e 930662 
rrep_1.3.4.orig.tar.gz
 0ca97f6090047238d5f60424904563c10f37c0243491359b62a0d630291c0e36 2025 
rrep_1.3.4-1.debian.tar.gz
 3b14e6cfcbe5973db91b87ce85db5b440b5a34173f29f4763832f1dc8e5a173a 62070 
rrep_1.3.4-1_i386.deb
Files: 
 e2023aa92d4e0f587001ba8e4a10808c 1691 utils optional rrep_1.3.4-1.dsc
 e82aa286e3679c1b7779a43cc93a6c8c 930662 utils optional rrep_1.3.4.orig.tar.gz
 c477c852d0b697a548b50504bcad8aad 2025 utils optional rrep_1.3.4-1.debian.tar.gz
 27b11a2c7b6f35e7d5c6ea67763be9f0 62070 utils optional rrep_1.3.4-1_i386.deb

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

iQIcBAEBAgAGBQJRL567AAoJENPhc4PPp/8Gal8P/39CXwyRRvpCO4wfREfa3kus
sTdDGy5MAP2MzH1cs9cHTFyjIggXNEcuP1/vLz4unICDV8CUxIBGUEk0U2OKE5ky
u2Zb9pjCcRA/7CY32FuIOCijpda2Cn++nuwVj3FobVBKmSgTGA7azAY5XRQy4rr2
sUd7bJy85NLgxonxh06OkKy/lr6hlESxoMshUGTKOVkS8hxyEurZkG68ZSwiljMr
lbN9tw0VZSq4CZkx9FhAA1E5qxWQnnTWYPXLg52kxqmt5GOjJXqOrAHH1kVijUcK
YVof5jz++J6q7M8kNPEeH/O0qBHLVj2DK0rh5jR7x9HRIm2MhJotUJUSI6a8/kpo
RYn0izWRZevYo5yG8w6YUDzg9yYRsCn9nhvJ29XR+Gia5eE0crZAHD2c1VcFluUh
KwX3sV9kZE26OFVGJXWFlPKHcNzkfdPTzcLqvCOzsddKmdCjCEK+H+Zp5NdPo/yd
ChWBCjKrYMbThrUUXZj7t6d0oVAhs8TcxcL2gwTNXacSelqK6NGrzgNGqoLHYQUh
eVjlnlo4rp0lqz6EWnRggq2SAIZ9f7cgtQUixkEqEn1QbTDtgvRtp1nKGCi2TppC
CkYui3x+3TG+jcSmyRWTUN9q8GDP1Bkp9uVp7jILBnDipkq5pZ8f1RG/pGJje4fg
JKD0XoDh/wSl6AoBDq8V
=7kEp
-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/e1ub8he-0001en...@franck.debian.org



Accepted hamexam 1.2.1-1 (source all)

2013-02-28 Thread John T. Nogatch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 08:52:34 -0800
Source: hamexam
Binary: hamexam
Architecture: source all
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers debian-h...@lists.debian.org
Changed-By: John T. Nogatch jnoga...@gmail.com
Description: 
 hamexam- Study tool for USA FCC amateur radio (ham) exams.
Closes: 690646 701639
Changes: 
 hamexam (1.2.1-1) unstable; urgency=low
 .
   * add echo instead of read -p bashism (Closes: 690646)
   * changed debian/control email address
   * figures optional {$PNG_VIEWER, eog, gwenview, gpicview, ristretto} -
 Thanks, Edi Meier (Closes: 701639)
   * show name of non-existent question
Checksums-Sha1: 
 4bf353bf6a4b26d2d8aee1cceaba074ea75f98c7 1764 hamexam_1.2.1-1.dsc
 2cc8bab0965c74c6f850653c98eaf907389d3e45 607045 hamexam_1.2.1.orig.tar.gz
 da9857fbb3b58ddba81f0ee6410d8410a3fb54e9 2407 hamexam_1.2.1-1.debian.tar.gz
 3cf47b663568871750efcdabf04fc94ea3dc586f 644658 hamexam_1.2.1-1_all.deb
Checksums-Sha256: 
 c09735220eef0f4b168ff417889ae669f0824d254734bd2296371b26be4e6567 1764 
hamexam_1.2.1-1.dsc
 ace28c692f40091d3b499e68faba9dc0c4373f343446e15898eaf02519e03af1 607045 
hamexam_1.2.1.orig.tar.gz
 6126db95da1aa523d4c435da4bbbff2987ec3c2258ebe31948d69604576452f0 2407 
hamexam_1.2.1-1.debian.tar.gz
 33c1cf27cea4736614ba99d712118e923d64349a25bc44c598b615b73ac4b71b 644658 
hamexam_1.2.1-1_all.deb
Files: 
 47f17e9dc39466ca4a56d2c5cf64b7ec 1764 hamradio extra hamexam_1.2.1-1.dsc
 8791746840722dcdb61d3b08d7875a72 607045 hamradio extra 
hamexam_1.2.1.orig.tar.gz
 343810d32f99934ff09a2869e527646d 2407 hamradio extra 
hamexam_1.2.1-1.debian.tar.gz
 e7d1ce3d9e1d0ddb2445978b9d5a619d 644658 hamradio extra hamexam_1.2.1-1_all.deb

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

iQIcBAEBCAAGBQJRL6ZBAAoJEHqwmdxYrXhZIucQAIfpuysLYSBnswkbHDehOUQs
E12/vD8nafIaGnIJ0tn97sS5nOiytQJ1jC70EHPdCLrS74N4EecEmcv3Ud0P7LoQ
ee797oBQAAfTmrvL1SFl262TT9AA3hB25TxFH3xLe5vgFpbIKMmnK9t9S+SeTa78
a8vzAwxfaR4xRgCbFnjUJQxaBFdsOOQcfnfk4CQ82PNGjqwJUtp7N2VSQXY+JR+0
5kqXUd7FDAk2Bc8PWvGpd8wR0OsCWJvfu+7Nn3GvsWdYLN3mIwGNzFOk6KG+Syey
BPfnTFEB7oMnZ9ihi/2ARGykpL5tTEry8JTQQFIvvVOgJ6t7IHLA9AxIjbncjkEQ
7WfA0qEEebUqSagdiZ5YgyUv7/HxQCzspmGZFg0/57z5yWhNqtuVc+nDG7nl/yKj
AlsSzggc52dJBgU/06B/xVs5uxD/eU8I3eM7ZiONn2BTMJcWjJuQm9eo8bOH8TdG
MZiBg0uNPhw3eUfR1iu71/T0yvdxrgIzIjCj9xVm5663c2p7QS9+mv7VpLuA6U47
34Gvk1Rjq4ATSntbL3lWReHj9rDV3PFtWYoR7GRaPFVZvUYkVmgd9pd03RzWhx3t
SqS01js3B4/RciDDS7C25mXpbwJs0uEJOOMDlmXKJ1Bb5wcdRDiQCHa7jgRuTo2G
MALWq53jMEEYcA78Yfq7
=kxKZ
-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/e1ub8kq-0007bj...@franck.debian.org



Accepted mozilla-gnome-keyring 0.6.8-1 (source amd64)

2013-02-28 Thread Ximin Luo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 23 Feb 2013 20:54:07 +
Source: mozilla-gnome-keyring
Binary: xul-ext-gnome-keyring
Architecture: source amd64
Version: 0.6.8-1
Distribution: experimental
Urgency: low
Maintainer: Ximin Luo infini...@gmx.com
Changed-By: Ximin Luo infini...@gmx.com
Description: 
 xul-ext-gnome-keyring - Store mozilla passwords in GNOME Keyring.
Changes: 
 mozilla-gnome-keyring (0.6.8-1) experimental; urgency=low
 .
   * New upstream release.
   * Rebuild for iceweasel 19 and icedove 17.
Checksums-Sha1: 
 c31b7b95cddbeb6c3d81fb25e0a782d39370e1ab 2105 mozilla-gnome-keyring_0.6.8-1.dsc
 361313abf2a80deb12c14bc32dee8cf38c26926b 39337 
mozilla-gnome-keyring_0.6.8.orig.tar.gz
 ad4adf3b0d3dec19802b32c4cf82828bde799185 2577 
mozilla-gnome-keyring_0.6.8-1.debian.tar.gz
 56baf9fa68e64b910e78db998bd9047c98f1500e 51960 
xul-ext-gnome-keyring_0.6.8-1_amd64.deb
Checksums-Sha256: 
 5c981562bb366b50f509303ff2f79d85e79006c8e0cb9150b68b2a726cd4afdd 2105 
mozilla-gnome-keyring_0.6.8-1.dsc
 06e711b8db1099184b7a13e706c46e24a852928c89fa19752379169c5d405b39 39337 
mozilla-gnome-keyring_0.6.8.orig.tar.gz
 73534492d9ac583d39210af57c1b47c2aa28dade8789490dd249ef0b94981471 2577 
mozilla-gnome-keyring_0.6.8-1.debian.tar.gz
 77d4035182bee01ce8631708d6dbc1fbb2c18b700aaf8f95c9b32b6a0e119bb5 51960 
xul-ext-gnome-keyring_0.6.8-1_amd64.deb
Files: 
 8414aa010b4ec46c2ccf89077cc619ea 2105 web optional 
mozilla-gnome-keyring_0.6.8-1.dsc
 04b1022f3b17cb5a1c0144c4d76e7466 39337 web optional 
mozilla-gnome-keyring_0.6.8.orig.tar.gz
 706b1f2562e2bec2073fc0a1e124a308 2577 web optional 
mozilla-gnome-keyring_0.6.8-1.debian.tar.gz
 5b3d8548129fdc03233aacd86a33b13c 51960 web optional 
xul-ext-gnome-keyring_0.6.8-1_amd64.deb

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

iQIcBAEBCAAGBQJRKeCIAAoJEEgU3sIrMHw8mEMQANKxJQGxSiK8ngSADZDHYO6c
8f6OYDhflUXvAJa4B+0GmW+BUHtFKJaqLqCsC7StY//mbqqr92s3VOjQpHG1l4YI
M19GGiBRSw/ryXoodxbV1fsL4ln7/kE37CqL/xAkH1PVobQaz2KMVTNEeuSEALBi
d3LO8s9JkEMSpPRPA1GK/SViNaDel2R4evn2TYKtvgWHL3yz5J3psFfdekM07ATm
usvrMDdxrGvVqP0Nm+32pZxftElWhMyTr8kAwYOdNjXLlROVcwpLrzmOIevM6Uh7
AjTVxK+stUhQfFFZWl0sKkZ1iKjTEmf89IAI1ZU5Hb3AYHmdkGneHa794fgYsG2J
iLkEGa4JSoBhGrGDzEXFj0JKGNBLSRrPMlR9Vj2u+98Sstp2kIIf+Kkzv4x464fZ
hvNJZ953lTPcZTyYMOmKBmQ/A0jEtvJdrghuw2LLMoLZsUn2awZKPYIbioiqixBB
DAeQLPaiZCDvFhjqczlaJXpH/E1cRucK7ynAR9mpcychKIN5nj55RK7Qmuse19Yh
iLjmDY6YAq/b3FKUJUJ0NXbtQzKF84OPl11agEeC1oVKu+rE5cwMweXFYXrz+/oo
jyCFf8TZdvDdhBTk3wzUUIi+UZeSPxOvAVfbP6oNfaAQdMd4pZrctyVekJzNU6Gu
lKqIQJgPSsCL2TsKvYeo
=OH0w
-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/e1ub8yu-00017g...@franck.debian.org



Accepted fadecut 0.1.2-1 (source all)

2013-02-28 Thread Marco Balmer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 27 Feb 2013 11:49:57 +0100
Source: fadecut
Binary: fadecut
Architecture: source all
Version: 0.1.2-1
Distribution: experimental
Urgency: low
Maintainer: Marco Balmer ma...@balmer.name
Changed-By: Marco Balmer ma...@balmer.name
Description: 
 fadecut- toolset to rip audiostreams, cut, fade in/out and tag the resulti
Changes: 
 fadecut (0.1.2-1) experimental; urgency=low
 .
   * New 0.1.2 upstream release
   * Closes #1 at github: Fadecut had problems with two instances running
 concurrently
   * Update debian/control: Standards-Version: 3.9.4
   * Update debian/control: Build-Depends changed to debhelper (= 9)
   * Update debian/compat: Changed to 9
Checksums-Sha1: 
 bbb34e8aafe733925b45f4b8f5f38c9378c8e6f8 1807 fadecut_0.1.2-1.dsc
 cbd471a79bda4117cc6d982cd77b647d4edb89a3 30503288 fadecut_0.1.2.orig.tar.gz
 39abe81f143c1d932e94d2b3e732fcafd58ef103 2387 fadecut_0.1.2-1.debian.tar.gz
 b10bf9c6e2fde475e315a950489681ec5a3057ef 15812 fadecut_0.1.2-1_all.deb
Checksums-Sha256: 
 7e6bc0a2fe22c1ab9c392e513b43ff063452251fe7d9014277365e6151fbd95b 1807 
fadecut_0.1.2-1.dsc
 1a59fb7dd3d385a547bd1c5ebe22d980f9c3edd0b11e3a7cffd171d265dcaee3 30503288 
fadecut_0.1.2.orig.tar.gz
 05e0f0a4616c27fab3f33fa5e0742b6a99ec3b21695840385916b8c8fff35015 2387 
fadecut_0.1.2-1.debian.tar.gz
 01b2e7b8a6a349f1d125f41dcbe39450df11edcceacfd14015b86f4298babb15 15812 
fadecut_0.1.2-1_all.deb
Files: 
 e8f8fe56ad131eebad7fc6600b29d07a 1807 sound extra fadecut_0.1.2-1.dsc
 cc9b66be181a0b393fff91411a0e69e5 30503288 sound extra fadecut_0.1.2.orig.tar.gz
 41b0d4b053cccfa0b85337cca426a65a 2387 sound extra fadecut_0.1.2-1.debian.tar.gz
 d97b4f1bdd2e2c1f4f64a32067624f01 15812 sound extra fadecut_0.1.2-1_all.deb

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

iQIcBAEBAgAGBQJRL61wAAoJENPhc4PPp/8GDUQQAIrMiQxUSG4r9eQ3izlgOVtI
LGIVbMeqISyX+VIoCXTCqnzcjL6bPFZyZBqXjuzS8K+isOFFHLey/Wbsp0eXaiHW
YXjzohLQqmUGfpXY8rJq3aXSQFRuIsPG2sSvPs2y6SJAD9OHETsC/1r4zzRXC6cu
f/v9YHBhnYxV08dpEPoL96NHNK7P88OM8MD5McqO63Nsw5hrxRPDn0FZXwtr5TxW
h+4/j5rrdrc3Jl/6ibUMPRQhd2KwHcru84HCLI+22ymh60LuVUrqoAps6ra/BMOb
+PAfMsJHXukWX551wLP9R2WylPzVMVtYM7Hhp6XaAgSH05/EcuxZXSndxq4tedpf
YG0wUlH4aqwxjDaIoogX9wie20USpXQ4vWyR9xK2/G1ijSii3QpuwSPH5AD5eS0P
JZq38P1zsJOFi0hLfsVc+WPBuP5vJ30qx4PgUUQbwCEGwUFqMbNp5zIr9heahRIi
IfkAi6huBXtP8QWOF148+ynZmrygi4z114gDggGfAPmDZUo0Wuj9C5hBNBioZt0O
SB6LQa3009kJRMb/EzmOAnrg3kGYRhGqxEBYTeTn9Z01lDfiKIZCc9Hw9HRTUZ01
HFQ+QXB0MyEQtdeaWuOLlBKTOj+nsrB5Cwb5piPUrI8wLxHGg7C2j6rQ+hIqClWC
OJ0qDo1CKBI2AW3IBB+9
=LoWp
-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/e1ub9dt-0003wl...@franck.debian.org



Accepted fccexam 1.0.4-1 (source all)

2013-02-28 Thread John T. Nogatch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 09:22:53 -0800
Source: fccexam
Binary: fccexam
Architecture: source all
Version: 1.0.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers debian-h...@lists.debian.org
Changed-By: John T. Nogatch jnoga...@gmail.com
Description: 
 fccexam- Study tool for USA FCC commercial radio license exams.
Closes: 690635
Changes: 
 fccexam (1.0.4-1) unstable; urgency=low
 .
   * use echo -n instead of read -p (Closes: 690635)
   * PNG_VIEWER  eog recommended, not required
   * show name of non-existent questions
   * updated email address  copyright date
Checksums-Sha1: 
 0345b12dfcea6daa6c50ec04f5c191bd35df6174 1762 fccexam_1.0.4-1.dsc
 743637616daf4df5363eb4ec1c6320a1e0e18d4c 976004 fccexam_1.0.4.orig.tar.gz
 eb3fb00cfdaf92177ab6026f006502431a22adf9 2368 fccexam_1.0.4-1.debian.tar.gz
 cafabeb4bbeae5dd750cecca1ccd114168c35650 1045206 fccexam_1.0.4-1_all.deb
Checksums-Sha256: 
 eb72656860ef9ea3fae7d5885efcc2bd60dc4f2bae124f39c4159f0c41b4628c 1762 
fccexam_1.0.4-1.dsc
 44951c5e0e59071a2d2d86e17486f1b64c53c53e9bf38ec42fcc89e0b83fc608 976004 
fccexam_1.0.4.orig.tar.gz
 a8b31356e8ba2f0179676ac2239b6816f49c080d441a79bcac917d93993471b4 2368 
fccexam_1.0.4-1.debian.tar.gz
 e65a494c81797b8ebc7ed916ae3d63de9469b0e6d31be6ec3a6c562b85a9c801 1045206 
fccexam_1.0.4-1_all.deb
Files: 
 86ee008f519b80b0413730c3e436bb6c 1762 hamradio extra fccexam_1.0.4-1.dsc
 42f09b18882bbcea244d059080d927df 976004 hamradio extra 
fccexam_1.0.4.orig.tar.gz
 8429ca7f90faf36c687f31781d93c466 2368 hamradio extra 
fccexam_1.0.4-1.debian.tar.gz
 b50f74f05af9cbdef4e1cff2352ba5b8 1045206 hamradio extra fccexam_1.0.4-1_all.deb

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

iQIcBAEBCAAGBQJRL650AAoJEHqwmdxYrXhZnZAQAKxhrVDJnSBUI9qd2uzTDPwc
+pTstKsvROeiFACgi2GNCrLlwUzS5NKqWWKj47hYNkuIQby84mXSNyrgRwWLCs+W
Ky0vh+VJ/fmWg1ryIFWSmmYdg3x2lcE/yuThcaf7eT/ovvRmqXuHNI36LLk6RVup
YYXVRgN1EWyvulEgoV/hlZtPm6Vefp5n1xRqgLq2Z+iCIm71jhLQTmyog6OK77Y6
pyMKkerHfYPtVlOY05HxyN6dqcolKlOkqG1TJ9DVVCnxL4vummfEw3YOJm77PVlG
LMqUSsDEdbGvVp/nN/b1CzsidLaV+P3U0olOAkQ6udao+dHyLsJkbWzJ/VoO7mux
b4Ix96w/XACDpDztCoV7cz/rzEyxmy5jY/VlmAUyDmPSzSXCBpeXbOc/oQFPGgAM
mTn3OX1XFlgSNlOMUIn6mptwtHyBaggpFGty/blsMkIwvkyZPNWLDCME0U7teTNO
BpBrJU/rgxpjLxV3KUF5xoVvPLD6+2VbNrPwYLUIdU35f3k50eWEgCBmfeJwGxWC
JEYFifGhx4mBsgAdMi22NQdFN7XlKUrWTD511AY0mAmTA3g9WcVMwpGJApEGVuUJ
KUbyOv09BZ5qSloZbkQYxGnUidNEFXoJuzj38/E3OPKXQ+JqYGH6BRtVNWy2ntej
4J0Tg8fwokgN1eYK9FrY
=pxQV
-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/e1ub9dc-0003yn...@franck.debian.org



Accepted globus-ftp-control 4.5-2 (source amd64 all)

2013-02-28 Thread Mattias Ellert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 27 Feb 2013 16:48:21 +0100
Source: globus-ftp-control
Binary: libglobus-ftp-control1 libglobus-ftp-control-dev 
libglobus-ftp-control-doc globus-ftp-control-dbg
Architecture: source amd64 all
Version: 4.5-2
Distribution: unstable
Urgency: low
Maintainer: Mattias Ellert mattias.ell...@fysast.uu.se
Changed-By: Mattias Ellert mattias.ell...@fysast.uu.se
Description: 
 globus-ftp-control-dbg - Globus Toolkit - GridFTP Control Library Debug Symbols
 libglobus-ftp-control-dev - Globus Toolkit - GridFTP Control Library 
Development Files
 libglobus-ftp-control-doc - Globus Toolkit - GridFTP Control Library 
Documentation Files
 libglobus-ftp-control1 - Globus Toolkit - GridFTP Control Library
Changes: 
 globus-ftp-control (4.5-2) unstable; urgency=low
 .
   * Fix modification to wrong authinfo object
Checksums-Sha1: 
 6f99edebdfdee7f32c182135b5a408d7597d7251 2499 globus-ftp-control_4.5-2.dsc
 6ab58d688555efb44a38a7cc922ec8432ceb 4440 
globus-ftp-control_4.5-2.debian.tar.gz
 a3bf5202d630717200b41d7d27cd89c198179db1 70660 
libglobus-ftp-control1_4.5-2_amd64.deb
 6779e5fcf89f07d3798454b16759fced915ebc21 13672 
libglobus-ftp-control-dev_4.5-2_amd64.deb
 cd8c727d6da99cc20dd4f3117bfd44b4606b7d56 157510 
globus-ftp-control-dbg_4.5-2_amd64.deb
 85ac9a0b2530dbbcb746b0faa9362ea154537dbb 375456 
libglobus-ftp-control-doc_4.5-2_all.deb
Checksums-Sha256: 
 f9ec7b48e440b8bb4993d1573a6d37096b351a0d7a6fc6e7b30a035c68668f94 2499 
globus-ftp-control_4.5-2.dsc
 cffa3e36047946cd56953cfcf9cea3c581b3085a84dd5b4ee847f8c7b0d505d4 4440 
globus-ftp-control_4.5-2.debian.tar.gz
 61b47f667441e1576fcbb1238d2147a51ad4104fa2f508d48afe448321cffa68 70660 
libglobus-ftp-control1_4.5-2_amd64.deb
 6c4647501241e8a4a69b35fbdd6c73923c4fb657f20af74b22fef0caaa712f70 13672 
libglobus-ftp-control-dev_4.5-2_amd64.deb
 500d6c3908f2309a3d5439019652c69c6e8354a3a7609e6e87455e407debd378 157510 
globus-ftp-control-dbg_4.5-2_amd64.deb
 258133c1862b237288b1136c66fa7a4f47a74073b6315bf79f6d5f502f79107e 375456 
libglobus-ftp-control-doc_4.5-2_all.deb
Files: 
 deb6da20536fa158645ad952751647a5 2499 net optional globus-ftp-control_4.5-2.dsc
 01f2f4e7f7247c1ec56baa73be156754 4440 net optional 
globus-ftp-control_4.5-2.debian.tar.gz
 6a10c1933fb99b05749c033d94e95d7a 70660 libs optional 
libglobus-ftp-control1_4.5-2_amd64.deb
 af57aa76d03f6032eab38cb573d2607e 13672 libdevel optional 
libglobus-ftp-control-dev_4.5-2_amd64.deb
 1d6f9f90e07a2e059bda86f46c5eaf1f 157510 debug extra 
globus-ftp-control-dbg_4.5-2_amd64.deb
 fc422a8ee01a33811e795017b838 375456 doc optional 
libglobus-ftp-control-doc_4.5-2_all.deb

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

iQIcBAEBAgAGBQJRL7OfAAoJEOiuwv874alL8CUP/1T93LqjkS6qvArJJXCrIlpO
mp2tIeTKQXj451IZ+FxLQxaV77CcA6wUhXVY7U4SDYlu4JSPkdHj84iqgS6rgQlO
4n8FeRPdeLBNi9nIhFSQUSlbAZdn4LdzDDCmFfXdqaHJx6woeHApnG+X2luXcubW
QZx8bSnuCQA/1o5tiLVlErYsTMw1LfsZzjLT4WkUGJHgD+8KMcyBilI1gxLx+aO5
nxBuRaJebPCbmWcCgbz5Zhsawg+vijGEE6jpGFHepCzaBrcgkceyJIgfoFmar6Uk
KsiMIv5Iy9eGU33Eo8GjydnhICJL5JQ1ZOJEUgujPLqyiR9GgRx+UyY8QNWmWxvB
AQlwybauTcdtZNzXOz+VuaHnOFvSKIGyG7ll1c4ICeMtGsvpS8iGH8PVlKV3TZRh
iWP8GzE5pKT0qQNt9aYFhrtiGs+pLjx4wbqhc2OiZYLhkYnn0DJvGcLuM/dSUjfP
apfCSs4LPaAXE7KwTgQcSd9XTx3XmEcpo6RufqSfgPJO6I930oCoK3H7gCcQdf3t
YG3UnCEp1Khm8Ib6KlkW8XYx9gBEqeEC4VtBWm9DpPOofU3m/SsSeQYMU195QDrH
ewc8tv228uNhSIStVkz5YsbdIIr/nnG8+NksrRSbevmpW5vQPpqZcuTXLoPYfo5B
NI0Gz5l/9LBYT3aOOA04
=4VoD
-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/e1ub9sn-00060x...@franck.debian.org



Accepted libgee 0.8.4-1 (source amd64)

2013-02-28 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 20:25:25 +0100
Source: libgee
Binary: libgee-0.8-2 libgee-0.8-dev libgee-0.8-2-dbg gir1.2-gee-0.8
Architecture: source amd64
Version: 0.8.4-1
Distribution: experimental
Urgency: low
Maintainer: Maintainers of Vala packages 
pkg-vala-maintain...@lists.alioth.debian.org
Changed-By: Sjoerd Simons sjo...@debian.org
Description: 
 gir1.2-gee-0.8 - GLib Telepathy connection manager library 
(GObject-Introspection)
 libgee-0.8-2 - GObject based collection library
 libgee-0.8-2-dbg - GObject based collection library - library symbols
 libgee-0.8-dev - GObject based collection library (development files)
Changes: 
 libgee (0.8.4-1) experimental; urgency=low
 .
   * New upstream release
   * Add myself to uploaders
Checksums-Sha1: 
 175425d7ba9a22b9f0ca43fd0b1d9325c7306082 1678 libgee_0.8.4-1.dsc
 fd576c323f00d4609e3ed6b482c1d41fa714b343 584040 libgee_0.8.4.orig.tar.xz
 7df3ae89cc7411d9d7289645ec66c3b82eeaa80f 7830 libgee_0.8.4-1.debian.tar.gz
 48621ae0b8340d4ded4d1df9fa4310946e99c1d7 165990 libgee-0.8-2_0.8.4-1_amd64.deb
 940700b9cb81c0f1f1e03792194c7356c4172976 40034 libgee-0.8-dev_0.8.4-1_amd64.deb
 b4f92b4b07b58e19e7fdbc6ca7e55499adfd6816 911130 
libgee-0.8-2-dbg_0.8.4-1_amd64.deb
 bdd457e5bb7690659a8da103bd59b89a3647b0d7 27626 gir1.2-gee-0.8_0.8.4-1_amd64.deb
Checksums-Sha256: 
 b9a5b3196bd859f2d189757ef03688fb22dabe6307a02b1a1d72d73ae0b1f55d 1678 
libgee_0.8.4-1.dsc
 0d651cf16d0825961f3f6992a4e27e67fbeb8599d4fcbcbb0f44aa2f7118a389 584040 
libgee_0.8.4.orig.tar.xz
 10ef81184c3cd3705d7d54de8bb613b81250b86d5657cb979b022a9efa1dc8d1 7830 
libgee_0.8.4-1.debian.tar.gz
 48b62fbd8eef694cb3a626a0bca6b5b5a0a1f9408b4c1020aae0892fe9c71f40 165990 
libgee-0.8-2_0.8.4-1_amd64.deb
 483789f2b08510ee576a1634c5c2ef3e79f71a30ff1d4ff8df8b9f8ede41036d 40034 
libgee-0.8-dev_0.8.4-1_amd64.deb
 dd6e490f92e58ec1e795e2156a7efdddcfb7bac44289649e20d1ea67cae065c7 911130 
libgee-0.8-2-dbg_0.8.4-1_amd64.deb
 5161e84a85eab8ce25b51564f9ef9d81c5382a0859fb68b5f540fe3a43558fdb 27626 
gir1.2-gee-0.8_0.8.4-1_amd64.deb
Files: 
 8d65f7bfe9fd2d066264bb8b4976208b 1678 libs optional libgee_0.8.4-1.dsc
 922ff20952cdef429d3dab0810761342 584040 libs optional libgee_0.8.4.orig.tar.xz
 680d7ec13f76f143762c8678f2e36425 7830 libs optional 
libgee_0.8.4-1.debian.tar.gz
 b43da19e216ca1507e07d7f33c4d8544 165990 libs optional 
libgee-0.8-2_0.8.4-1_amd64.deb
 7c67aaf2140ecccd6fe4043f32c8473c 40034 libdevel optional 
libgee-0.8-dev_0.8.4-1_amd64.deb
 bde253e0310c37903909285c459ae1bd 911130 debug extra 
libgee-0.8-2-dbg_0.8.4-1_amd64.deb
 a56d9586d6259bd519528f85b9271bac 27626 introspection optional 
gir1.2-gee-0.8_0.8.4-1_amd64.deb

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

iEYEARECAAYFAlEvsVgACgkQgTd+SodosdLNGACdHGGHzUv2fY/diDu2NRBOvz5Q
vgUAoJguF5usagITgf9OuaaBhN6MHfro
=jPoM
-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/e1ub9sv-00067a...@franck.debian.org



Accepted pigz 2.2.4-3 (source amd64)

2013-02-28 Thread Eduard Bloch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 20:16:03 +0100
Source: pigz
Binary: pigz
Architecture: source amd64
Version: 2.2.4-3
Distribution: unstable
Urgency: low
Maintainer: Eduard Bloch bl...@debian.org
Changed-By: Eduard Bloch bl...@debian.org
Description: 
 pigz   - Parallel Implementation of GZip
Changes: 
 pigz (2.2.4-3) unstable; urgency=low
 .
   * removed hardening flags, this build is targeting Wheezy
Checksums-Sha1: 
 fa071446cbb548fc62d015ee4739f982a6e3c109 1012 pigz_2.2.4-3.dsc
 5b98257b61585eb854a5b0dae0e667ba25a6fccd 2724 pigz_2.2.4-3.debian.tar.xz
 a39f7e362d422696943b36c7f3597a2297a9788a 34902 pigz_2.2.4-3_amd64.deb
Checksums-Sha256: 
 6f9446c071e5eca079fe3e9d0802ed59d67473a49feca0d0c43124997f87bcb8 1012 
pigz_2.2.4-3.dsc
 d9620babcc22adf0915b37a9f6650a5ccfd1146f0fc698c64801aa8c01e1 2724 
pigz_2.2.4-3.debian.tar.xz
 8c6ce1dfc140e22cfb3311af728f2665a389d443f46747baaa2726d3dabd63fa 34902 
pigz_2.2.4-3_amd64.deb
Files: 
 f10a2df854093373f3d49424d1de5aca 1012 utils extra pigz_2.2.4-3.dsc
 4728a784407f4313b9e06e0be6d8fa34 2724 utils extra pigz_2.2.4-3.debian.tar.xz
 5a3d7ab24001d4e849629fd24587c959 34902 utils extra pigz_2.2.4-3_amd64.deb

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

iD8DBQFRL69v4QZIHu3wCMURAnbxAJ98CTsEE97IW4dhlR8hfZ1BDmu6tACeIQpS
1AdW3a6YsYu8SEgJWZ4xTGY=
=mQpa
-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/e1ub9sc-0006b5...@franck.debian.org



Accepted twclock 3.1-2 (source amd64)

2013-02-28 Thread Kamal Mostafa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 11:42:51 -0800
Source: twclock
Binary: twclock
Architecture: source amd64
Version: 3.1-2
Distribution: unstable
Urgency: high
Maintainer: Debian Hamradio Maintainers debian-h...@lists.debian.org
Changed-By: Kamal Mostafa ka...@whence.com
Description: 
 twclock- World clock for ham radio operators
Closes: 701900
Changes: 
 twclock (3.1-2) unstable; urgency=high
 .
   * Fix underlinking: link libpulse explicitly
 - Thanks Graham Inggs (Closes: #701900, LP: #1134240)
   * Enabled build-hardening
Checksums-Sha1: 
 311b1825101a1ec413f5f3fb8caf1e7a108e0c83 1845 twclock_3.1-2.dsc
 67dddc072d3e87c7b68ed2245314c48447625c16 6094 twclock_3.1-2.debian.tar.gz
 84cbb8b30908355086b5dc23f1956bc1b7576cb0 36410 twclock_3.1-2_amd64.deb
Checksums-Sha256: 
 d97fa0f2f7eb1e0805e1166781e780414d3063a9ffd148700847c2e9950eecce 1845 
twclock_3.1-2.dsc
 d4c37126d9ea50246a4308f3f81da412aa836933c2b682f8db9d9b1fa132aca7 6094 
twclock_3.1-2.debian.tar.gz
 6c389a3843fa4f929955762195c24321f4595b4c2171f7c30a87e6be9990e424 36410 
twclock_3.1-2_amd64.deb
Files: 
 1a1612f7d6d4f15f6964a34c59eaa715 1845 hamradio optional twclock_3.1-2.dsc
 6d91cefb40d39146e65ea12906261f89 6094 hamradio optional 
twclock_3.1-2.debian.tar.gz
 68d19de0b0360a7e008b3a307062e28a 36410 hamradio optional 
twclock_3.1-2_amd64.deb

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

iQIcBAEBCAAGBQJRL7eGAAoJEHqwmdxYrXhZfSkP/iWnGWyrc0HrhGWPprIbY60n
3n4BSFAoldWrJIGpbrOhZXDe9aCcNoOuFI0MdsVfIuD7auzQB0UCb5OP83/sjETy
GvUfqcQ+nVfbTV8s3NUTPSdlEhoXscyeUABHa22bIVPXWSSGnRIvrr06Fdbkpngn
1E4IU4BPwYZRbz5qV5np2+M/dox//jsUevITNWRBef+46MCnLooj2/jhoSwjW5mJ
kiX0ImFqlA8/48wAL+pMccV7z1QiC/qCI/VsR3rBk+dh7EZPL/A8BFKlUd9C5QKw
7ZEXp7dLbkL8zySJM/+JoxtKBmiPIvcBK02Zc31BTDBgxc71s13FPL6MGGxpQLV2
wC70zj0h3yY2aKodQzj7GdPPUDj/IAuRYeTcHsGMaKC//sU6SkJvqJZAYIsLqH00
+ZXwrK/NAG/ud86rpcWL5BXzTNmlJKiMgOmCECeeOfrET7mbXbYhw4Wa5x6MOCXy
oL6kwXO8FOFKU7S50jW9g6SNqi7ULLwucUxhzhh15MkKWnc4Ok5l4VbYPdGzCcAr
5sYs89xBdWufJrxGmUxc5OqeEpfwNRG3EGZVHLs6VtlrmeIWo+oFgai7MfsNUYHj
bU4EwWyP2vNNy52PrBQ6geOtEVqyMr9pLeo3ePEcNtoCoPeAlXuWvFmlDlWK+s1S
6bLLSgMeH7J3JxlKE187
=rRnv
-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/e1ubapd-00064f...@franck.debian.org



Accepted sd 0.75-1 (source all)

2013-02-28 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 28 Feb 2013 21:51:04 +0100
Source: sd
Binary: sd
Architecture: source all
Version: 0.75-1
Distribution: unstable
Urgency: low
Maintainer: Jonas Smedegaard d...@jones.dk
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 sd - peer-to-peer bug tracker
Closes: 578090 681815
Changes: 
 sd (0.75-1) unstable; urgency=low
 .
   [ upstream ]
   * New release this is getting ridiculous.
 User-visible highlights (not all commits are listed here):
 + fix hiveminder logins when setting username/password via URL.
 + bump dependencies to fix bitrot.
 + foreign replicas now have better username/password prompting.
 + clean up hiveminder sync messages.
 + fix cloning from hiveminder.
 + progress bar cleanups on clone/pull.
 + publish --html works again.
   Closes: bug#681815. Thanks to Helmut Grohne.
 + new server default port that clashes less with other HTTP servers.
 + misc mac fixes.
 + make -h more discoverable.
 + new 'help commands' page.
 + 'help browser' and 'help clone' now point to sync help.
 + mention --as and --local in clone usage messages.
 + add some SD-specific bash completion rules.
 .
   [ Christine Spang ]
   * Remove Redmine from the package description and recommendations
 since it is too alpha to support in this package yet.
 Closes: #578090.
   * Update homepage.
 .
   [ Jonas Smedegaard ]
   * Use CDBS (not dh sequencer).
 + Declare package relations in rules file.
 + Let CDBS automagically install README (and stop install irrelevant
   testsuite README while at it).
 + Implement get-orig-source target.
   * Take over as lead maintainer. Keep Christine as Uploader.
   * Update package relations:
 + Declare all build-dependencies in Build-Depends: Using
   Build-Depends-Indep has benefit only for architecture-specific
   packages.
 + Fix tighten (build-)dependency on libprophet-perl, and fix
   build-depend and depend on same version.
 + Stop build-depending on libtest-simple-perl: Provided by
   perl(-modules) since stable, and oldstable no longer supported.
   Drop corresponding TODO item.
 + Relax to build-depend unversioned on libtest-script-run-perl:
   Needed version satisfied in stable, and unavailable in oldstable
   (which is no longer supported anyway).
 + Build-depend on libtest-http-server-simple-perl and
   libtest-www-mechanize-perl: Enables more tests.
 + Explicitly build-conflict against libnet-google-code-perl and
   libnet-github-perl: Avoids some tests failing/hanging.
 + Tighten (build-)dependency on libhtml-tree-perl: Needed since
   App::SD 0.75.
 + (Build-)depend on libemail-mime-perl, libpath-class-perl and
   libtry-tiny-perl: Needed since App::SD 0.75.
 + Suggest libconfig-gitlike-perl: Needed for github replica since
   App::SD 0.75.
   * Bump dephelper compatibility level to 8.
   * Rewrite copyright file using machine-readable format 1.0.
   * Bump standards-version to 3.9.4.
   * Use anonscm.debian.org URLs in control file Vcs-* fields.
   * Imported Upstream version 0.75
   * Switch to dpkg source format 3.0 (quilt).
   * Add git-buildpackage config, enabling pristine-tar and signed tags.
Checksums-Sha1: 
 ea921820ace9110318462e630e65365bdf57e97d 2180 sd_0.75-1.dsc
 3c12017834099f82fc93a79993698880a0445ffe 150690 sd_0.75.orig.tar.gz
 0d809dcf32c022c67a2d6e3c3c8241941994bdda 5945 sd_0.75-1.debian.tar.gz
 4f978e49cb7f55010918e3d9cda08a8dc73ee707 142470 sd_0.75-1_all.deb
Checksums-Sha256: 
 f5e20be71f2f87c13179064bb0b74cc502603bb3b489eb4484834d023932fef1 2180 
sd_0.75-1.dsc
 16312fd046a80fdc0499c0b8e11ec08ee2fe90d4d5cfd7b8cf076870671462d2 150690 
sd_0.75.orig.tar.gz
 781512842ae9b29325b4946ee1df655ab88289324dcfeb2bb282dbae418cfe12 5945 
sd_0.75-1.debian.tar.gz
 b8e6e101a35069309f89aee40f4da59bc67482c3c08bfb7cdf59a7933558614d 142470 
sd_0.75-1_all.deb
Files: 
 fd4cc44cfaafc4a36bfa6575b205dbeb 2180 perl optional sd_0.75-1.dsc
 70c8d2ad969871dfe7a2d4a532a19fdc 150690 perl optional sd_0.75.orig.tar.gz
 81d87d43a043563e54a41d0dbf3ba7c8 5945 perl optional sd_0.75-1.debian.tar.gz
 e358195cf389febcc47efa4cd006535a 142470 perl optional sd_0.75-1_all.deb

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

iQIcBAEBCgAGBQJRL8SkAAoJECx8MUbBoAEhiZQP/jdkE0vyGEAXJgs4y+dpTbYS
huVQ9bP/SRETUTbdzQ5/dIDg6AD0ZE46+n7PL/oMIxtC6ny0Qmhit+O1PLis6Zb0
uIy3OB2SAJU8S8X6VErsxAnfGOIycA06UpSZOAMOKvlUG2olnNCUH1xtNurSVwUB
LyfU0Dol1cD+7RLRFMofTj0t+oY/+zF6kLW7Wkx0/H0xpAinrkDwnZ/Gc2R5/NWo
kwTWYc0Yw0Ehw5oShYhF0xrTY+ShxMmyRvrH7kjaJ046tMJlEiOP0xB+9seEnuzq
gTZyhM1uKNeQNp3UB7PrLKxAqgm8Sx2a0OYM5Fnmj1ov9Rm94WyAsFkrts/NntSU
xZtOmdOzrjsT8gPRc11P/QMs+xfLvgbIxDU2/8dbvj5JAScgmm3zGwdTGqIuSxmt
sIIjD+4Sv2L/wlE0ob/ixgaeh+P44mqBzdr9QXdK7cBfTG6x+u2TKmFwkLPNJyWe
hkREL/hvuOFHEqCjFbpcGpffUOhXZcJpGiVcMA/StVBpIHsjjbi2qq1PmZAE+o2d

Accepted gtkmm-documentation 3.4.0-2 (source all)

2013-02-28 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 21:43:52 +0100
Source: gtkmm-documentation
Binary: gtkmm-documentation
Architecture: source all
Version: 3.4.0-2
Distribution: unstable
Urgency: medium
Maintainer: Deng Xiyue manphiz-gu...@users.alioth.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 gtkmm-documentation - Documentation of C++ wrappers for GLib/GTK+
Closes: 700790
Changes: 
 gtkmm-documentation (3.4.0-2) unstable; urgency=medium
 .
   * Team upload
   * Remove /usr/share/doc/gtkmm-3.0/tutorial symlink (closes: #700790).
 /usr/share/doc/gtkmm-3.0 is itself a symlink, which messes things up.
Checksums-Sha1: 
 72377b21d9791d444f8201dfc9e542694f438751 2343 gtkmm-documentation_3.4.0-2.dsc
 79681163a9d5a8f2df17127a428e7613cfd4d5ce 4831 
gtkmm-documentation_3.4.0-2.debian.tar.gz
 88e8ee8f3f758d852c026c55ff1b92820d34b21e 2994618 
gtkmm-documentation_3.4.0-2_all.deb
Checksums-Sha256: 
 f4bb04fcab3b91416ffac6c46987dbde66abc11ff864cbe9f31ced205302 2343 
gtkmm-documentation_3.4.0-2.dsc
 04ef529503fd72f4908b36a5489867ebf7796da86ac6715d545e5f7bcadd1b41 4831 
gtkmm-documentation_3.4.0-2.debian.tar.gz
 cdcbcad50f86d33a5de7ba1ea33e51f4d28823de0251e879e3ecb33f1d156787 2994618 
gtkmm-documentation_3.4.0-2_all.deb
Files: 
 f3b88400a950c9a0edf216078aadd937 2343 doc optional 
gtkmm-documentation_3.4.0-2.dsc
 3d650c388fb2715067627753878234e5 4831 doc optional 
gtkmm-documentation_3.4.0-2.debian.tar.gz
 95cd44043101db0c17f20d5ab2bb7b0e 2994618 doc optional 
gtkmm-documentation_3.4.0-2_all.deb

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

iQIcBAEBCAAGBQJRL8XeAAoJEDEBgAUJBeQMgEAP/3ZwvVHNe2jYUD9ckfKVZJGs
2zhI9dLu+WYfYyAAjBYCOFOKQZzWGbSICROFcvTS7/ykfmj2lYyhkxU/G8xOcYk2
tI9M7Wv0V02Y6cghRcG8GdTnNcTlcvVL+idsCax75HFUf4LnkBQlaAuE/naVlw2W
6kuuGQ6J6fFLji5BoLIPgbsNHJWQdtSrk9tT8XTMMH+U3x2UWKERavpjEwXGG+bJ
gRVYGSEhK/P/Lt85c1Iny3Dok57DUaZS+29ajxg21mSYzSTlhllft2SMKMrVtZxv
gzbaArVRnMAgbkWUeCeNPu2rNm/OX7Df8T+Osf+NaqkXY5hKbpFbHPghvcbg9NwK
Y4vKyF+glNWJkVJiqwNTd7b7ylqKB4c9zlVi5rcYvHkUtw6krOcErtC0QsnF9UWg
yXO8m5HnQczNRBd/LpO7/c9bikFJ1J7B82dq9YrllXvQ9mu1ys1Ptomgaomz3wT4
mJXe0wZjvLvNDfoLwxxbtmYkEoOy4jzmqxS4TR65ZIpmTSsHuYiCPqNlHg8V4fIh
K/O7mMJsk3FaeYY8fXxUMGJOq3c4nAB8GSJW4/EndpkgJqAWcfYgNQ1P7mIs7x4C
orFrTFKxJUtVmsZfFT/UPmmZwHcvaja/gZeEXIjKyVI8HQdWps7ghVPHEVhbb/Ut
LtHUT2WP4SUg9Q/j/auJ
=ZSBL
-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/e1ubar9-0002kb...@franck.debian.org



Accepted elmerfem 6.1.0.svn.5396.dfsg2-2 (source i386 all)

2013-02-28 Thread Boris Pek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Feb 2013 21:50:05 +0200
Source: elmerfem
Binary: elmer elmer-dbg elmer-common libelmersolver-6.1 libelmersolver-dbg 
libelmer-dev
Architecture: source i386 all
Version: 6.1.0.svn.5396.dfsg2-2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Boris Pek tehnic...@mail.ru
Description: 
 elmer  - finite element multiphysics suite - binaries
 elmer-common - finite element multiphysics suite - architecture-independent 
file
 elmer-dbg  - finite element multiphysics suite - debugging symbols
 libelmer-dev - finite element multiphysics suite - development files
 libelmersolver-6.1 - finite element multiphysics suite - library
 libelmersolver-dbg - finite element multiphysics suite - library debugging 
symbols
Closes: 698527
Changes: 
 elmerfem (6.1.0.svn.5396.dfsg2-2) unstable; urgency=low
 .
   * Add myself to Uploaders. (See: #691875)
   * Remove usr/bin/ElmerGUI* from debian/elmer.files. (Closes: #698527)
   * Remove usr/bin/ElmerClips from debian/elmer.files.
   * Remove usr/share/ElmerGUI* from debian/elmer-common.files.
   * Remove files which became useless after removing ElmerGUI:
 - debian/*.desktop
 - debian/README.Debian
 - debian/elmer.config
 - debian/elmer.config
 - debian/elmer.docs
 - debian/elmer.postinst
 - debian/elmer.prerm
 - debian/elmer.templates
 - debian/patches/ElmerGUI-config.patch
 - debian/patches/ElmerGUI-no-strip.patch
 - debian/patches/glu.patch
 - debian/patches/lib-link-order.patch
 - debian/patches/libav_071.patch
 - debian/patches/no-avcore.patch
 - debian/patches/no-tetgen.patch
 - debian/patches/node-partition.patch
 - debian/po/*
   * Update debian/rules and debian/patches/series to fit changes above.
   * Remove extra build dependencies:
 liboce-modeling-dev, libqt4-dev, qt4-qmake, libqt4-opengl-dev,
 libqwt5-qt4-dev, libvtk5-qt4-dev, python-qt4-dev,
 libavcodec-dev, libavutil-dev, libswscale-dev
   * Remove package elmergui-samples.
Checksums-Sha1: 
 5ed35ce93304c96021da84630581c94045ea6517 2818 
elmerfem_6.1.0.svn.5396.dfsg2-2.dsc
 6320cbcac432eae7b7234c9cfdeb5edc54a38e0a 15171 
elmerfem_6.1.0.svn.5396.dfsg2-2.debian.tar.gz
 7084dd0301b576c9fb7a0495498a69f322329311 1319204 
elmer_6.1.0.svn.5396.dfsg2-2_i386.deb
 0e500bbfdef9588ac1163fcad35f7f9635943084 310914 
elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386.deb
 016df1468adfc1a2f29288b044d36db5118d4955 2497614 
libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386.deb
 203a8fd9e40b5445834852cf9d708cb5fec2b5d5 162334 
libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386.deb
 e4061c4e82942cc536c3f58b2d0ebc196222c7f1 3899708 
libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386.deb
 3687c6b1a7c10fb36150bd21aa7fd85fc3e9eaaa 1500932 
elmer-common_6.1.0.svn.5396.dfsg2-2_all.deb
Checksums-Sha256: 
 ba7c1b10d2bdabaf732b3e49ba34dae36765a674f3120e2c934538d3e26803ba 2818 
elmerfem_6.1.0.svn.5396.dfsg2-2.dsc
 92363a52fa0e8d372fccddfb6b67075d2e396674473a6956832346a712f2c0b7 15171 
elmerfem_6.1.0.svn.5396.dfsg2-2.debian.tar.gz
 e0079dae8f7f3b81c0b6953b5aef266ab88548c75c186fe9217d9fb0ee415961 1319204 
elmer_6.1.0.svn.5396.dfsg2-2_i386.deb
 74d2abac631b54f15bfb85b6216825095fe27c5a9314d2f97ae2183927fc34da 310914 
elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386.deb
 04710cf7ac950a0e2cac03168ae7dd4290ca23be104e39988071d231c1218250 2497614 
libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386.deb
 2ca2fd76bbe771b28368f86b5cd53dd2fe586ab61b72584db7d1d9894cbd23bd 162334 
libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386.deb
 b6fd8e62b902f45b32385e7843ed22ac7509f039af322bebdb60e96eb91a64a4 3899708 
libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386.deb
 9ad5eeec270d51ba97619a061184a2c052c80432eaaf9b05859f8f9e06cb9213 1500932 
elmer-common_6.1.0.svn.5396.dfsg2-2_all.deb
Files: 
 ad41f391da217045d8c6d4c9d2fc6369 2818 science extra 
elmerfem_6.1.0.svn.5396.dfsg2-2.dsc
 1d3b099c344320e5294af77d56eb52da 15171 science extra 
elmerfem_6.1.0.svn.5396.dfsg2-2.debian.tar.gz
 af74483678a6c08eb2b5dac770642283 1319204 science extra 
elmer_6.1.0.svn.5396.dfsg2-2_i386.deb
 fe133f1a8ab7548218202afefc0785d3 310914 debug extra 
elmer-dbg_6.1.0.svn.5396.dfsg2-2_i386.deb
 978e4dc0fff8e3a1c3e7b403600a6efa 2497614 libs extra 
libelmersolver-6.1_6.1.0.svn.5396.dfsg2-2_i386.deb
 d0639c882fa6c1a1ccee5c4e12e7b63a 162334 debug extra 
libelmersolver-dbg_6.1.0.svn.5396.dfsg2-2_i386.deb
 b0bb495e1bc5e678c8db35b1847da705 3899708 libdevel extra 
libelmer-dev_6.1.0.svn.5396.dfsg2-2_i386.deb
 d0a5e24f43c9a920e6847cc2ead73ff5 1500932 science extra 
elmer-common_6.1.0.svn.5396.dfsg2-2_all.deb

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

iQIcBAEBAgAGBQJRL8rjAAoJENABW9Eo85J4zh0P/2XeBmIWKmu93TmXlyjM9hFg
ju3ZVQEdfJ/xGaed7RP7nWBESiibqVfuB0niL1dt6XAKPa1Sj71TWUbcKhSiCSVq
ENsxpFzy5vmla+M3VH5aah1da0T6JbnWVJtL5U8QEHAa3dUTh9t/xQ3j9pbut8ZF

Accepted noweb 2.11b-7.1 (source all amd64)

2013-02-28 Thread Maximiliano Curia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 21 Feb 2013 21:43:25 +0100
Source: noweb
Binary: noweb nowebm
Architecture: source all amd64
Version: 2.11b-7.1
Distribution: unstable
Urgency: low
Maintainer: Hubert Chathi uho...@debian.org
Changed-By: Maximiliano Curia m...@debian.org
Description: 
 noweb  - A WEB-like literate-programming tool
 nowebm - A WEB-like literate-programming tool - transitional package
Closes: 701056
Changes: 
 noweb (2.11b-7.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/patches/99_touch.dpatch: Add src/Makefile to the list of touched
 files. (Closes: #701056)
Checksums-Sha1: 
 cef190346e549bd548ed5fce073da1924bac31a0 1775 noweb_2.11b-7.1.dsc
 d62e67af3b5e3c7ed82bf04536ca2296a15b96e7 14939 noweb_2.11b-7.1.diff.gz
 4620b85db345a1994e5364e36fb1401c5d53defe 5744 nowebm_2.11b-7.1_all.deb
 b465c75ba9dac1847829ed9ee6cdfd3e3902b379 757826 noweb_2.11b-7.1_amd64.deb
Checksums-Sha256: 
 0b48cc3053f7747b67b73d6d961022d4b1cebdcbc724e5220a290d0b5ebfa406 1775 
noweb_2.11b-7.1.dsc
 300230e1bbea037bfd4dc9e665f87122d8d56d9a75fa8e9bc79db57a5e0134c3 14939 
noweb_2.11b-7.1.diff.gz
 1bb4add34f87d97afeacecbe51236ec12e94dc226994e498c59ba1ffe0b21738 5744 
nowebm_2.11b-7.1_all.deb
 98eb997a36ece0e73beac9f98f5bb22819d00dc1402323cc5a6a1bf90853a3a9 757826 
noweb_2.11b-7.1_amd64.deb
Files: 
 dc46665e37e36e0cf11b854107c23cd0 1775 devel extra noweb_2.11b-7.1.dsc
 5f0ee04d362e73da1e978a01d66c3450 14939 devel extra noweb_2.11b-7.1.diff.gz
 7f96493f425fb9277e1234ebb81a1384 5744 devel extra nowebm_2.11b-7.1_all.deb
 9e116454bf40959aeaf486138ff5e8d7 757826 devel extra noweb_2.11b-7.1_amd64.deb

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

iQIcBAEBCAAGBQJRJooKAAoJEMcZdpmymyMq+K8P/0ifa3gCVSbUwCRE7kMXtPZI
WjJRVQvLcuadzKSf+TxWGK75LeO3IjW9CiJQ3bx35TdsE04wS1j4e1W9nmSOjljy
U+avww0lavT5G5i1n9snNOmnqgMEhYdybMYzOG1vh4HLoiEKCr5xfl60Vugi+Dvt
A2BBWa3UUnhjSq53fke6R5X4B2MmMziOGjPGFq/F/LtDtbqJ1RXFXVAbyBJscdQw
bYhKCwKiwDJ6pJoXoRf8BWbZCKGaoXRBudTFImPWbHd7aTpHWjXKbl9QGLZbJMYP
5gIuwIrF2VT1w42PDjFASyKmgg4/UJYSYc5x1GcwsB3D4EjH9eWPkleHrmk/Om0r
aQT5d6DOHH4WLGG+cDvAZVBJlyZtM3Ilu4U9XnIRGWAdUUvomKAt+hsnfNARNUSI
Fsb+3bZzSM3SpFkWV5jNt1l5beh1GKMu9PTFRQj1P6pQcKVk1tIjTpRyx7azJNxk
zGjx1HXWywYkoo8YiUJOSt3hu0OTCkCDAc4D77lV8Wk0nf2I2bV+ewmJYM5sM74W
S11fzK2IQ2VPHvU9TgwupLRWh16MRkgzaH/xJ+hsWLFLpc5l/SLNEKZDPnKp+lYt
2jFSeabbwDIn+ThtAC4jEz1psDGgxM2OhQW9y0YhlEwXXV+b1O/uTuor/bDddFJx
U0VEitwi3Jr25t/0au2/
=PV/P
-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/e1ubb5u-0005bu...@franck.debian.org



Accepted gtkmm-documentation 3.4.0-3 (source all)

2013-02-28 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 22:29:54 +0100
Source: gtkmm-documentation
Binary: gtkmm-documentation
Architecture: source all
Version: 3.4.0-3
Distribution: unstable
Urgency: low
Maintainer: Deng Xiyue manphiz-gu...@users.alioth.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 gtkmm-documentation - Documentation of C++ wrappers for GLib/GTK+
Changes: 
 gtkmm-documentation (3.4.0-3) unstable; urgency=low
 .
   * Brown paper bag upload.
   * Reintroduce the symlink, but in /usr/share/doc/libgtkmm-3.0-doc instead;
 our doc-base file references the symlink path.  Thanks, Michael Biebl!
Checksums-Sha1: 
 0ff14ed7266a084fd5ad5c7ea05fc8b11c3e4add 2343 gtkmm-documentation_3.4.0-3.dsc
 103eb563a2792f8dff0404982f9b9004302e45a6 4942 
gtkmm-documentation_3.4.0-3.debian.tar.gz
 22e512566eb4a0aecab9e1ea6fd8f0bed3143dcd 2994754 
gtkmm-documentation_3.4.0-3_all.deb
Checksums-Sha256: 
 79a80bb192289835cb826997e27438407adecf1b279f6365c2edaca122e03c4c 2343 
gtkmm-documentation_3.4.0-3.dsc
 99e313753be6937f07f9703f3b6d24894d6ee17319e0296aac3c46d905fecc88 4942 
gtkmm-documentation_3.4.0-3.debian.tar.gz
 7da39c1dad0cb58d1c39f244fa1f5eccb70ba0c81ef029996c3b926724d3164e 2994754 
gtkmm-documentation_3.4.0-3_all.deb
Files: 
 3e9aba1324d65deb76748c89dd78d7d5 2343 doc optional 
gtkmm-documentation_3.4.0-3.dsc
 8379a8ff7388fbb0c03e5a3c424bbac4 4942 doc optional 
gtkmm-documentation_3.4.0-3.debian.tar.gz
 c43214c7a8802819d29093795360ad42 2994754 doc optional 
gtkmm-documentation_3.4.0-3_all.deb

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

iQIcBAEBCAAGBQJRL82JAAoJEDEBgAUJBeQMqGMP/3GJ+Kjq54xWkN9rliSRY7qK
SHbCkTenOe90ELxtcZES4CJI9fhEE3XfGIhkVVlplB8IcqZFAcxPdN+pKu1LgUMm
9pkqewtd5kNXB+78F6V5V7LB8sB6L+cGZh5XG8h0jFpNKjlzkzF2pGXJJ/KAYNwA
ARmnD6byh1gT15B75klktsCr3OmsOzLzeKpIZOX+7gBkCcqTjsqlTiROZVE5TBa3
Gg6ALJ1kFv7wktg/r+naDAzKMb2eYEojrAgv6DT5q045cy+mWydK0nStdrJAAsif
BXc4lNXR3Xx6bwp6Gj+twA55K5pwkvxfRpgJ+sCmEdBy0TfaT6im3sQSYhIrNa1T
IWPYKrW3AwJr67Ad/Z9TjDCNtBM1V5GcSJmzql11bpRu5e/PGvx5rZZb2PNEe8sq
kmgnUJcCRs8uqA2RUSJdSE4DVZ9hmpsrjqonZfGgYQYFTTfoKjk4pRjzlFcTvXfF
7G08Atg+lRLk9bMzXxdIv7UptjPfkQ6yBOmPpgiymK8kegGNzP2nVhTTCaCXNDIW
CQPlzPfnNxLMI5zXXJmyifffZIca8NMiO29AoKjQGhWil04z9Xif4MWh45mx8h20
yIpaQAS7NelEwyOMQrxYHU4SBegfGNbtaxzpMF/5f2ev4LzcweS8JRbCKiSCEXBZ
dqDqVDLT9alUbp7zX90r
=KY8B
-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/e1ubbk5-0007jy...@franck.debian.org



Accepted twpsk 4.0-2 (source amd64)

2013-02-28 Thread Kamal Mostafa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 13:30:31 -0800
Source: twpsk
Binary: twpsk
Architecture: source amd64
Version: 4.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers debian-h...@lists.debian.org
Changed-By: Kamal Mostafa ka...@whence.com
Description: 
 twpsk  - Soundcard-based X program for operating PSK31
Closes: 701901
Changes: 
 twpsk (4.0-2) unstable; urgency=low
 .
   * Fix underlinking: link libpulse explicitly
 - Thanks Graham Inggs (Closes: #701901, LP: #1134242)
   * Enabled build-hardening
Checksums-Sha1: 
 5790e8a2bcd5746f0980f58a0da5b4d284a3a08e 1838 twpsk_4.0-2.dsc
 b3b18da15c4740378b1049a3f62fbbafd8dc73c6 5620 twpsk_4.0-2.debian.tar.gz
 a6d61fd1c64f153be290990ed5153ede43332cd7 80204 twpsk_4.0-2_amd64.deb
Checksums-Sha256: 
 08fc1d970675cb9d568676cd99285dae5ee1ee3117dd5f4358370f1162f0497f 1838 
twpsk_4.0-2.dsc
 f3aad08cab73599baabd58f6227f9366f28f3062899fe7ddb21690666bf9659c 5620 
twpsk_4.0-2.debian.tar.gz
 2ef84d68abca052d19f975260b2fc7a304d66e49669f4ec68c65b72b5315e30c 80204 
twpsk_4.0-2_amd64.deb
Files: 
 63b0926a5fe7320340d15ac379f9fbd2 1838 hamradio optional twpsk_4.0-2.dsc
 1ac30f679fdcd6c4bc84bdd399cab952 5620 hamradio optional 
twpsk_4.0-2.debian.tar.gz
 030351bc9c7ac61cd63078f962bf818f 80204 hamradio optional twpsk_4.0-2_amd64.deb

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

iQIcBAEBCAAGBQJRL85rAAoJEHqwmdxYrXhZv3sP/36TksZGFMt3J4/weiU7axyS
H/22P5QQ43HNk03yLP5bFOB1hid39ACxYZe9+cwgHtvwvNK5FBx7d5ejhfixod1P
s4fMOXJfSjSaYSonvrujmmT6Z4qIBmMBJ/qnAnvzk26uJ19W33XffLOnz2gr2Br4
r6dREqjKDNCx8ERGGe/97wcORdnD+rqoYP6bsZtVK8fO5cNkUWMeR8lrVK1BeQZh
Xdmv4zQPEQL265c9fBhZBQ2gdgfwX7QsvOZEZyfAZej3jFhfhQokEqWtDYe0ukNB
NSsofwqxSK0660Z0FF+o9MbfrTrsWKX1IAAP5XKsY1uKSXRkNMTF9wiSJzIdO5km
cjvPToXoXSRe8GVFkD1KOkJqbpFeOUTwijWI6AnJjEeBxsftid4cHyb9AOHO1iKl
o2vKSZF+XbzCt3sSLWuigPrwyEzskI6JNto4s5tGZ70twVKejXtkMY6Ko818zyb1
9/zSh8MgtCDD68qqAa6ctXvpQV+EkmMjPnnk9ECMolophmr7YuFuqS0gIkJ/zorI
SpkdliWIIHHeVsi1Cs840xQR66y/OLG55TR45dZIIaTKoRmSPwiuEGHmXxbvrcFk
zmlaZ+3uESNalhNU3EwY7hv7kK6zY5Y/r8r6s+zDbxq6ovfIRV4ZlNkgkSezw34m
qLS1E4tmO2OIpWKW1ob8
=DZjV
-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/e1ubbkd-0007nm...@franck.debian.org



Accepted vala-0.18 0.18.1-3 (source all amd64)

2013-02-28 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 23:15:13 +0100
Source: vala-0.18
Binary: valac-0.18 valac-0.18-vapi vala-0.18-doc libvala-0.18-0 
libvala-0.18-dev valac-0.18-dbg libvala-0.18-0-dbg
Architecture: source all amd64
Version: 0.18.1-3
Distribution: experimental
Urgency: low
Maintainer: Maintainers of Vala packages 
pkg-vala-maintain...@lists.alioth.debian.org
Changed-By: Sjoerd Simons sjo...@debian.org
Description: 
 libvala-0.18-0 - C# like language for the GObject system - library
 libvala-0.18-0-dbg - C# like language for the GObject system - library symbols
 libvala-0.18-dev - C# like language for the GObject system - development 
headers
 vala-0.18-doc - C# like language for the GObject system - documentation
 valac-0.18 - C# like language for the GObject system
 valac-0.18-dbg - C# like language for the GObject system - debug symbols
 valac-0.18-vapi - C# like language for the GObject system - vapi files
Changes: 
 vala-0.18 (0.18.1-3) experimental; urgency=low
 .
   * debian/patches/valagirparser-Ignore-the-new-instance-parameter-tag.patch
 + Added. Ignore the instance-parameter tag which new g-i emits but vala
   doesn't need.
Checksums-Sha1: 
 eb272dd39f05119494a1ac6284447234fdd158ce 1972 vala-0.18_0.18.1-3.dsc
 5c8785781be40a805745d42e7876fca6bb1986cb 22908 vala-0.18_0.18.1-3.debian.tar.xz
 f1d2eb557929f01387a8735d7b8688102a2394a0 960536 
valac-0.18-vapi_0.18.1-3_all.deb
 26335730244013baf135fd786246d75b908df2cd 132798 vala-0.18-doc_0.18.1-3_all.deb
 e49a089d7d339d8830ddc7e5d88f8fe5372bac8d 301216 valac-0.18_0.18.1-3_amd64.deb
 a88573aa917494809b3a5235baa1313c8ce5c370 1092414 
libvala-0.18-0_0.18.1-3_amd64.deb
 9efd2de779243ed1ddb2a64dc6aaa29abfd60582 180986 
libvala-0.18-dev_0.18.1-3_amd64.deb
 cc29fe80ecd7cdd27d5970a4826a649a77785c31 688108 
valac-0.18-dbg_0.18.1-3_amd64.deb
 e17c95f36856b9b984df3ae47d4109a663960d04 5008452 
libvala-0.18-0-dbg_0.18.1-3_amd64.deb
Checksums-Sha256: 
 533b6bafbc00b3624dbea27f827a1f4b7ce2780c17d4dd120cfb51cc172688b7 1972 
vala-0.18_0.18.1-3.dsc
 67956f8c0598c8bcae6108e89364cdc4657b532882712ec5e81b1868c4b37fbc 22908 
vala-0.18_0.18.1-3.debian.tar.xz
 4c499628925217467174622b4e36f8842643bbd32183cda8ea5573b720ef9c1e 960536 
valac-0.18-vapi_0.18.1-3_all.deb
 8fae738c78361d78dce7becd7d7d6f704e670b8cf80adc38cf95f6a0e53484e3 132798 
vala-0.18-doc_0.18.1-3_all.deb
 398548b5fd8085849e7c5dd73038c20dc05da375fbc75a61001b42b06fba45c0 301216 
valac-0.18_0.18.1-3_amd64.deb
 7ffe486317a80fefbb336950c2bfebf243ed115e9b3a4da520574a9b9a0fa972 1092414 
libvala-0.18-0_0.18.1-3_amd64.deb
 458d762511f73031e118d3bace2cb318b642ed9db8a861d704a210ee49a2a944 180986 
libvala-0.18-dev_0.18.1-3_amd64.deb
 9f2a82885fdb9f91b6e861818fb90bc43cab2e4611220b2801787c75df8e91bd 688108 
valac-0.18-dbg_0.18.1-3_amd64.deb
 bb8459f3a623792d23070b0691f8387a9d42efdbec1ce9666461a5a5d9706df5 5008452 
libvala-0.18-0-dbg_0.18.1-3_amd64.deb
Files: 
 50c00c4bbceb0af9bcb99f93e988ec1a 1972 devel optional vala-0.18_0.18.1-3.dsc
 436824bd23975bd366c68cd85bce72bd 22908 devel optional 
vala-0.18_0.18.1-3.debian.tar.xz
 fec57500eb7f92bfc44e7411f1eea19a 960536 devel optional 
valac-0.18-vapi_0.18.1-3_all.deb
 dee7ff2bbd90683c69c7353bdd1e2a0e 132798 doc optional 
vala-0.18-doc_0.18.1-3_all.deb
 8da345aec696b01af918ad20903e1971 301216 devel optional 
valac-0.18_0.18.1-3_amd64.deb
 c688df1e6d177bb3fca46ef0db73b09d 1092414 libs optional 
libvala-0.18-0_0.18.1-3_amd64.deb
 b1323e248742f01a9a9dcba5c3251a06 180986 libdevel optional 
libvala-0.18-dev_0.18.1-3_amd64.deb
 3eb22392455a9d12e0a13a00ae120f73 688108 debug extra 
valac-0.18-dbg_0.18.1-3_amd64.deb
 07e3647e6a6ad20b6f6ea2235aa9cff7 5008452 debug extra 
libvala-0.18-0-dbg_0.18.1-3_amd64.deb

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

iEYEARECAAYFAlEv1/MACgkQgTd+SodosdKdawCgtWDJSG3deBJwbrTZDpUbCOqY
8wcAn3HgYBWoVBfjKhzPMUnXZQMJ6uqt
=mN/s
-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/e1ubc1t-ob...@franck.debian.org



Accepted glade 3.14.2-2 (source all amd64)

2013-02-28 Thread Andreas Henriksson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 23:46:44 +0100
Source: glade
Binary: libgladeui-2-4 libgladeui-common libgladeui-dev libgladeui-doc 
gir1.2-gladeui-2.0 glade
Architecture: source all amd64
Version: 3.14.2-2
Distribution: experimental
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Andreas Henriksson andr...@fatal.se
Description: 
 gir1.2-gladeui-2.0 - GObject introspection data for the GTK+ User Interface 
library
 glade  - GTK+ User Interface Builder
 libgladeui-2-4 - GTK+ User Interface Build core library
 libgladeui-common - GTK+ User Interface Build core library (common files)
 libgladeui-dev - GTK+ User Interface Build core library (development files)
 libgladeui-doc - GTK+ User Interface Build core library (documentation)
Changes: 
 glade (3.14.2-2) experimental; urgency=low
 .
   * debian/copyright: Note that help/* is under GFDL-1.1+
 Thanks to Ansgar Burchardt for noticing this.
   * Bump python-gi-dev build dep to (= 2.90.4) according to configure.ac
   * Add build-dependency on python2.7-dev to enable python integration
 and readd libgladepython.so symbols to libgladeui-2-4.symbols
Checksums-Sha1: 
 12e7898c96fdd4d603557341a11c981c30fec68d 2022 glade_3.14.2-2.dsc
 133ed3c4e08e5c986456f59ebecce1985b1283e0 31927 glade_3.14.2-2.debian.tar.gz
 b984649e023b48d06b31fc3e8841d156113a1eec 950238 
libgladeui-common_3.14.2-2_all.deb
 c197b4a372688a22b896bb5e1f4fc2ee1765e048 266906 libgladeui-doc_3.14.2-2_all.deb
 c69046d6dccaffc8de13f47e44bd1a5765cb6c06 530730 
libgladeui-2-4_3.14.2-2_amd64.deb
 3418c8bf367a8c083ce39bda0638ff32c21dff6a 252334 
libgladeui-dev_3.14.2-2_amd64.deb
 f1b66b3eb9803eacc82b5a3fd26df449e96d 212244 
gir1.2-gladeui-2.0_3.14.2-2_amd64.deb
 19ba18923a006e5a7c3f8a5589aacb1a6848c6b8 838362 glade_3.14.2-2_amd64.deb
Checksums-Sha256: 
 e7a922068ad1b591f629fc831c23dbbea5384c3b4b9fdeb9076858b4fec6da50 2022 
glade_3.14.2-2.dsc
 e934480b90318b8ab3a1bad3ac3c0376202fed8c74b8ef01f20b59e9f2cd8176 31927 
glade_3.14.2-2.debian.tar.gz
 850bcf47c3c61b00015287d3919b5f07dbf6755ac360380d4928e5c336eb1b1d 950238 
libgladeui-common_3.14.2-2_all.deb
 7b2495dcb47f1b3fc3e4137b49dd3de946db931eab0a0afdda53d8ae722fb2a2 266906 
libgladeui-doc_3.14.2-2_all.deb
 b2d0e3a815962de5797f04e260bb0aa233ffbb4c65d58cf324228faed8c6a692 530730 
libgladeui-2-4_3.14.2-2_amd64.deb
 80e1ea9ca630eea65bdb7d2ce58ad5181b4eb612291a45de202fd57ae3e586db 252334 
libgladeui-dev_3.14.2-2_amd64.deb
 92202e9fcc8c8b350c84eba2dcc31b8a46f2451b84873e904bd375062c6fe26f 212244 
gir1.2-gladeui-2.0_3.14.2-2_amd64.deb
 fc15cb35195cb0364aa9decb9058222ba31de375da2da27143e1167fc0e4f826 838362 
glade_3.14.2-2_amd64.deb
Files: 
 59a295b7de1d94274efd48f36f483d33 2022 gnome optional glade_3.14.2-2.dsc
 d4a5a4eaf3918fb96ba48b13f53f5aea 31927 gnome optional 
glade_3.14.2-2.debian.tar.gz
 fc99f1daf0348de089f3906787b9802d 950238 libs optional 
libgladeui-common_3.14.2-2_all.deb
 5e4fdbbcd765208465d5d0c792e9a744 266906 doc optional 
libgladeui-doc_3.14.2-2_all.deb
 28a9ac260ca3325ff34a6bf38623f1d6 530730 libs optional 
libgladeui-2-4_3.14.2-2_amd64.deb
 57ecce410c551eb767b0135d6c46a18e 252334 libdevel optional 
libgladeui-dev_3.14.2-2_amd64.deb
 d7893398e6d7e31368a10a37e35e4234 212244 introspection optional 
gir1.2-gladeui-2.0_3.14.2-2_amd64.deb
 de7598ed1cc6501b484eb5c1c3dc3ba7 838362 devel optional glade_3.14.2-2_amd64.deb

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

iEYEARECAAYFAlEv4KUACgkQcgQ2cL3l8e6t1wCfbLEItgpaPgl8S7TmmhDi//bI
BwYAoJYSa3b99BO7JiE+f9854g1agSuV
=eDSX
-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/e1ubcup-cr...@franck.debian.org



Accepted python-imaging 1.1.7+1.7.8-4 (source all amd64)

2013-02-28 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 14:59:19 +0100
Source: python-imaging
Binary: python-imaging python-imaging-dbg python-imaging-tk 
python-imaging-tk-dbg python-imaging-sane python-imaging-sane-dbg 
python3-imaging python3-imaging-dbg python3-imaging-tk python3-imaging-tk-dbg 
python3-imaging-sane python3-imaging-sane-dbg python-imaging-doc 
python-imaging-compat
Architecture: source all amd64
Version: 1.1.7+1.7.8-4
Distribution: experimental
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 python-imaging - Python Imaging Library (Pillow fork)
 python-imaging-compat - Python Imaging Library compatibility layer
 python-imaging-dbg - Python Imaging Library (debug extension)
 python-imaging-doc - Examples for the Python Imaging Library
 python-imaging-sane - Python Imaging Library - SANE interface (Pillow fork)
 python-imaging-sane-dbg - Python Imaging Library - SANE interface (debug 
extension)
 python-imaging-tk - Python Imaging Library - ImageTk Module (Pillow fork)
 python-imaging-tk-dbg - Python Imaging Library - ImageTk Module (debug 
extension)
 python3-imaging - Python Imaging Library (Python3)
 python3-imaging-dbg - Python Imaging Library (Python3 debug extension)
 python3-imaging-sane - Python Imaging Library - SANE interface (Python3)
 python3-imaging-sane-dbg - Python Imaging Library - SANE interface (Python 
3debug extension)
 python3-imaging-tk - Python Imaging Library - ImageTk Module (Python3)
 python3-imaging-tk-dbg - Python Imaging Library - ImageTk Module (Python3 
debug extension)
Closes: 700716
Changes: 
 python-imaging (1.1.7+1.7.8-4) experimental; urgency=low
 .
   * Require python-defaults (= 2.7.3-11) for the build. Closes: #700716.
Checksums-Sha1: 
 91773568f3cc20bc7fb4bda17aa99384f0e8f1d1 2244 python-imaging_1.1.7+1.7.8-4.dsc
 bc6d2ed4ba79d4f99e8427e29f24de4b89046d3d 275151 
python-imaging_1.1.7+1.7.8-4.debian.tar.gz
 7b73cb57a12524afb57b7cc54181eb64dad4b344 19592 
python-imaging-doc_1.1.7+1.7.8-4_all.deb
 965b26434f7419f243e7d6d84364f51c802ae630 9430 
python-imaging-compat_1.1.7+1.7.8-4_all.deb
 5dcda7251def690b322658a16ccb1798fdbb34c9 446152 
python-imaging_1.1.7+1.7.8-4_amd64.deb
 41a81465845067290de8af32200845eabb521c72 1135132 
python-imaging-dbg_1.1.7+1.7.8-4_amd64.deb
 bc8ba71fdbabf9ab023afd6112545d0df4b5b51c 14412 
python-imaging-tk_1.1.7+1.7.8-4_amd64.deb
 15df46f5ac1eb3bbf4f3f7d528f9b12b65f17a0a 23142 
python-imaging-tk-dbg_1.1.7+1.7.8-4_amd64.deb
 b095e6e71b3d487c3c6a1fceaabfbfb882e5c2a2 27988 
python-imaging-sane_1.1.7+1.7.8-4_amd64.deb
 bdcf58fc3d9cab08be994ed9f5ec63ca6c5fac36 78294 
python-imaging-sane-dbg_1.1.7+1.7.8-4_amd64.deb
 fffb3a05fe8ec9a74fa1b6153c7f2c1f1df9b187 453618 
python3-imaging_1.1.7+1.7.8-4_amd64.deb
 5298f997e72bb40d5aae385e5ce6a69948d310f8 1173152 
python3-imaging-dbg_1.1.7+1.7.8-4_amd64.deb
 2bd85c9dfbf02dd843c4277a54c82933ff400016 13618 
python3-imaging-tk_1.1.7+1.7.8-4_amd64.deb
 5de286336db61b2f24a1822eb3a563493c4467b7 22648 
python3-imaging-tk-dbg_1.1.7+1.7.8-4_amd64.deb
 35386239c21e8e3aa6d9b01018724ff5d96803fa 22586 
python3-imaging-sane_1.1.7+1.7.8-4_amd64.deb
 ae4c24001719049396a8b6d12b34383a43ad940b 81650 
python3-imaging-sane-dbg_1.1.7+1.7.8-4_amd64.deb
Checksums-Sha256: 
 a162b3a97d116b2d856e1e9951c92a8ae6e1f60d5a36dc6588f67e11c5c9f279 2244 
python-imaging_1.1.7+1.7.8-4.dsc
 f123e24e305b6690b5dd7f7798ad27ef8dbe28f0a05be854385430b1add6b9f1 275151 
python-imaging_1.1.7+1.7.8-4.debian.tar.gz
 77a47a57800e02cbbe45364d7f5ba4ffdc8502dca529c003e106858d76782348 19592 
python-imaging-doc_1.1.7+1.7.8-4_all.deb
 0b750211e0b7b57fcb6d9bd19bc9a432c149f0fa115ab4dd8854ab02b5fa70dd 9430 
python-imaging-compat_1.1.7+1.7.8-4_all.deb
 129b95add621aa848b5548d75fe029fd05d2c7f1b68155952346fe7bf53e9c54 446152 
python-imaging_1.1.7+1.7.8-4_amd64.deb
 155b8a107feb0c1a60741798a5c032d8545f0d4849c0db7c84593c6f3b8c714d 1135132 
python-imaging-dbg_1.1.7+1.7.8-4_amd64.deb
 7d6627c453f62d4f8dc780782317a9453f78cfe78f21654abc76efe81997d07e 14412 
python-imaging-tk_1.1.7+1.7.8-4_amd64.deb
 1ab950590d6fe0022b3755e68989322732d3305bd076cf4206e022b9fba61c25 23142 
python-imaging-tk-dbg_1.1.7+1.7.8-4_amd64.deb
 65089bf46d2631da07440947bce83eb850f2885f09ef45aadd963c607fc69d39 27988 
python-imaging-sane_1.1.7+1.7.8-4_amd64.deb
 cdef37a16f340f6a9424a31153b760bd7ad3c101f01b98dd5fa09aa1848af647 78294 
python-imaging-sane-dbg_1.1.7+1.7.8-4_amd64.deb
 ad8261f2b5b9400a1cbf112ac6d2758de437eae165f76e08bdd5cb651df41a80 453618 
python3-imaging_1.1.7+1.7.8-4_amd64.deb
 ab058379be523db07a210574c1ce8f338d411223b942de67babab36f97eee267 1173152 
python3-imaging-dbg_1.1.7+1.7.8-4_amd64.deb
 d3f6de281afae3b1d1089b6b2b1c3f0de8020758c0b23a9354dab563dad5aacb 13618 
python3-imaging-tk_1.1.7+1.7.8-4_amd64.deb
 cc1cf1906efeebff9b82365974ff73dbb4c2cef4b312ad17938bdbf674ee7e65 22648 
python3-imaging-tk-dbg_1.1.7+1.7.8-4_amd64.deb
 

Accepted ltt-control 2.1.1-1 (source amd64)

2013-02-28 Thread Jon Bernard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 18:34:16 -0500
Source: ltt-control
Binary: lttng-tools liblttng-ctl0 liblttng-ctl-dev ltt-bin liblttd0 liblttd-dev 
liblttctl0 liblttctl-dev
Architecture: source amd64
Version: 2.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Jon Bernard jbern...@debian.org
Changed-By: Jon Bernard jbern...@debian.org
Description: 
 liblttctl-dev - Transitional package for liblttng-ctl-dev
 liblttctl0 - Transitional package for liblttng-ctl0
 liblttd-dev - Transitional package for liblttng-ctl-dev
 liblttd0   - Transitional package for liblttng-ctl0
 liblttng-ctl-dev - LTTng control and utility library (development files)
 liblttng-ctl0 - LTTng control and utility library
 ltt-bin- Transitional package for lttng-tools
 lttng-tools - LTTng control and utility programs
Closes: 701779
Changes: 
 ltt-control (2.1.1-1) unstable; urgency=low
 .
   * [228144f] New upstream version 2.1.1
   * [a9f14a2] Refresh test utilities link patch
   * [49f2b94] Set build dependency on proper version of ust.
 Thanks to Glenn McGrath (Closes: #701779)
   * [7f80999] Remove AUTHORS and NEWS from docs, no longer shipped
Checksums-Sha1: 
 10d160b29bc5b51e75468185e1d6f26517f08254 1588 ltt-control_2.1.1-1.dsc
 e70963e150408a76472d15c49520c3a7c297e8b5 943600 ltt-control_2.1.1.orig.tar.gz
 c5facca8390b8dffcdb7e0c751837b4bbf9f8ad8 6309 ltt-control_2.1.1-1.debian.tar.gz
 f774ab46ebed45550052596bae19614adaeeb625 246402 lttng-tools_2.1.1-1_amd64.deb
 4701fe8fe958e5316552c51c62cd9a0cee2c1c16 65518 liblttng-ctl0_2.1.1-1_amd64.deb
 b0069e9d65584b51c6ab36d7d060f85c11377c98 86878 
liblttng-ctl-dev_2.1.1-1_amd64.deb
 e2a6996910b90aadbfa6f79c82601bc0771e47c2 10988 ltt-bin_2.1.1-1_amd64.deb
 a9c5070324164506c2b563bddc4ade7e6ef962bd 10984 liblttd0_2.1.1-1_amd64.deb
 761c1ab3eeef259292f92b518f84955394dede3a 10990 liblttd-dev_2.1.1-1_amd64.deb
 852ab348d9ccb9646c4d94b86c59abee45de8117 10986 liblttctl0_2.1.1-1_amd64.deb
 92b5f0853dad353eab7f07b2f65f76b557faadb7 10990 liblttctl-dev_2.1.1-1_amd64.deb
Checksums-Sha256: 
 17bb347e86b31759b576d5e42a3e86f994c8b341aaf0c8248d51bb3d476b29c1 1588 
ltt-control_2.1.1-1.dsc
 e2589e00988ae7a64ad9c0c4144b30bbc41b80b0c763ed319e4121bcf1e632fe 943600 
ltt-control_2.1.1.orig.tar.gz
 367ddb39d5947d658a090f4230009888f359947cfd16decbfbc57029758aabf6 6309 
ltt-control_2.1.1-1.debian.tar.gz
 e7f72791146071985b063746504ca73c9c3094aac3f195b73fc38764b540ec38 246402 
lttng-tools_2.1.1-1_amd64.deb
 d23eafea0b7be40f41c3e39b11ccf27cab52c0dddc7beaa5bf7ca02c50219ee3 65518 
liblttng-ctl0_2.1.1-1_amd64.deb
 69650be7759f6f8c2494f1e6c2e0d3a88b90f414368a71cd7d0c007c651ce6b0 86878 
liblttng-ctl-dev_2.1.1-1_amd64.deb
 06e0f946a1d0d18288314269ced266434fbd83dd108b3c0e645655da8e7b9b80 10988 
ltt-bin_2.1.1-1_amd64.deb
 6492348f3400597440f88b6c16cd12e15efe6f3a9bca3ddd90c5d5833c9d23b3 10984 
liblttd0_2.1.1-1_amd64.deb
 e999e4ff28cd955fcd59db3d256e6d67755ac769628378a062db796a77ff1c5b 10990 
liblttd-dev_2.1.1-1_amd64.deb
 a625f913b283fede9fc8e5ee3ea1e70c61d2941b91acb86f3234aa60a26b2b99 10986 
liblttctl0_2.1.1-1_amd64.deb
 032576ad8df34c8d93c13e4cdc9dc5bce6d0882da6aca0fea3a451810a2336a8 10990 
liblttctl-dev_2.1.1-1_amd64.deb
Files: 
 a87652b7f0a6503aedeb8c3d857c9d6c 1588 libs extra ltt-control_2.1.1-1.dsc
 c252b7e466e759006458df12e76a827a 943600 libs extra 
ltt-control_2.1.1.orig.tar.gz
 b2f79d3d52d9b96bec25a0064195b1f4 6309 libs extra 
ltt-control_2.1.1-1.debian.tar.gz
 a807283ee59c65fcbb0d3c9f09261df3 246402 utils extra 
lttng-tools_2.1.1-1_amd64.deb
 1ebb5c662554fc2e738ff05b56678e2a 65518 libs extra 
liblttng-ctl0_2.1.1-1_amd64.deb
 cfa76c2ced6fd2f931e12bad3a9615d9 86878 libdevel extra 
liblttng-ctl-dev_2.1.1-1_amd64.deb
 6b509f00f18613529cfb4cabeb6b9126 10988 oldlibs extra ltt-bin_2.1.1-1_amd64.deb
 d51fb7745679d09ef948e17552506097 10984 oldlibs extra liblttd0_2.1.1-1_amd64.deb
 f63c9835c27a73c232023836e7f0f057 10990 oldlibs extra 
liblttd-dev_2.1.1-1_amd64.deb
 829a0f79d65995137e82fa8e94530a6c 10986 oldlibs extra 
liblttctl0_2.1.1-1_amd64.deb
 0c4333857d47eda088df6fd995c60346 10990 oldlibs extra 
liblttctl-dev_2.1.1-1_amd64.deb

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

iEYEARECAAYFAlEv6nEACgkQwAT2A1kSwn6AOACgtcKnY9CGfYaKogG07HlGMbNA
e6kAn3AZNvlLCDSbsyq7SSAtOtqQlob+
=dyGc
-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/e1ubddf-0007c2...@franck.debian.org



Accepted libio-async-loop-glib-perl 0.20-3 (source all)

2013-02-28 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 01 Mar 2013 01:16:04 +0100
Source: libio-async-loop-glib-perl
Binary: libio-async-loop-glib-perl
Architecture: source all
Version: 0.20-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libio-async-loop-glib-perl - Perl extension for an event loop using GLib
Closes: 699258
Changes: 
 libio-async-loop-glib-perl (0.20-3) unstable; urgency=low
 .
   * Disable t/06loop-control.t. These tests are unreliable and have been
 removed by upstream for the next release; cf. CPAN RT#83033.
 (Closes: #699258)
Checksums-Sha1: 
 fedf68890aad99396400b7577c6057d08b910026 2308 
libio-async-loop-glib-perl_0.20-3.dsc
 9c49a31a9ebe884bcb1a9326b45211ceda3fddb2 2920 
libio-async-loop-glib-perl_0.20-3.debian.tar.gz
 d780a78207eaf02a71aaceb22a15246e0dd4e74b 9896 
libio-async-loop-glib-perl_0.20-3_all.deb
Checksums-Sha256: 
 4f671cc8e5df93d8fd5f3e6650da41d39662164996f53874b653f690e7c40001 2308 
libio-async-loop-glib-perl_0.20-3.dsc
 533e811ba5f64bf98f9ae0a9d19700052e0afde71fbe674628e9c1d8f7d6ec31 2920 
libio-async-loop-glib-perl_0.20-3.debian.tar.gz
 74104345b8dbdb4d021c3b2c9dda3e3b4b969828cf095ef540d3bb97c1d79c23 9896 
libio-async-loop-glib-perl_0.20-3_all.deb
Files: 
 db270ffbd98fca16658d051a3b1816a4 2308 perl optional 
libio-async-loop-glib-perl_0.20-3.dsc
 8aabc1c924d3a5a530be107191d80c2e 2920 perl optional 
libio-async-loop-glib-perl_0.20-3.debian.tar.gz
 87288d82f4e3d47a30fb32104299c079 9896 perl optional 
libio-async-loop-glib-perl_0.20-3_all.deb

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

iQIcBAEBCAAGBQJRL/QDAAoJELs6aAGGSaoGL+YP/2zdd2+NaWABQNi9j2MH5EM0
pzelfD0eDg9pD+huo50joSgXpn4vwQSCwBtuZqqJ/qItyYUzljP4oyruInSjA/hT
r8fnXuQkmCHOw05cH8P5m7pRr88YTfIm/GQKAKvcXrL7DW55C7FY39mbdAowDtYB
I1LuyysYJF8a5fmRA+1I8Uyq6o67jCnPXbMGz5yyf3b/N3u6Mpv9fr0sj9C+XcwI
yPKZ/SnC8E9iRLnJFXUddF8FCXMS8AOtfHebCRPRbmpWn6+jnpLfuhgVzrAbK8vL
LHwydTJ8JFv25I2aGVKlMQYh4NYETEgcQObtI+RbKYe/ck10pv9y1+j2YrXigmNS
PYo63JcgoRJDNoeQ+3QefKE+mVZwU/m2kCysg+ivnGx/wBEemQxJpqLJAiCT4EeE
5S7BxLs2HbbgKp2h6+E4LeoqLqSSJfRd1ukhwYGQEr3hK8eSMCE7EBzURuTwpl8c
hsZwFdHwBaA4zFNysoU40wNOMOIDzgW7BkGAeD9djQNNKzJq6FJcXRrAtfQUgM6t
zcHkaIX6dIxiGuk8w4RuFtgLnKpWcijRtDRX+SnPJ2Iy9zhNmVcPM0gPfkP/j5EU
35FRHq7WxCKdj3XLL+rEONs1gU2ZfYFyVSSt7seFy1SyhCHy06Inx98j2i6z+sXU
7qrlk6NuT5uKza+Yhpoa
=WHvV
-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/e1ubdue-0005t5...@franck.debian.org



Accepted debian-edu-doc 1.5~20130228~7.0 (source all)

2013-02-28 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 18:25:09 -0400
Source: debian-edu-doc
Binary: debian-edu-doc-en debian-edu-doc-da debian-edu-doc-de debian-edu-doc-es 
debian-edu-doc-nb debian-edu-doc-it debian-edu-doc-fr
Architecture: source all
Version: 1.5~20130228~7.0
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: David Prévot taf...@debian.org
Description: 
 debian-edu-doc-da - Danish documentation from the Debian Edu project
 debian-edu-doc-de - German documentation from the Debian Edu project
 debian-edu-doc-en - English documentation from the Debian Edu project
 debian-edu-doc-es - Spanish documentation from the Debian Edu project
 debian-edu-doc-fr - French documentation from the Debian Edu project
 debian-edu-doc-it - Italian documentation from the Debian Edu project
 debian-edu-doc-nb - Bokmål documentation from the Debian Edu project
Changes: 
 debian-edu-doc (1.5~20130228~7.0) unstable; urgency=low
 .
   * Update manuals and images from the wiki.
 .
   [ Squeeze manual translation update ]
   * French (Cédric Boutillier).
   * Danish (Joe Hansen).
   * Italian (Claudio Carboncini).
Checksums-Sha1: 
 a84b89f072108ca3a7cb999a379932414668a422 2495 
debian-edu-doc_1.5~20130228~7.0.dsc
 b7b3ad38984624524524a7b2ce96bdb5f8aa62e7 36621863 
debian-edu-doc_1.5~20130228~7.0.tar.gz
 f17743a3e2ec71a1caffaaa3d2c9b084f6e2380e 19268530 
debian-edu-doc-en_1.5~20130228~7.0_all.deb
 598ac4dbfe0e74383bce1fe70110265834359d5c 6113458 
debian-edu-doc-da_1.5~20130228~7.0_all.deb
 5f05d76ecec23d12f05c865884a540f5d0256a7e 10820986 
debian-edu-doc-de_1.5~20130228~7.0_all.deb
 4ed4f15178370e536b6d10486598def4a1b8c38b 9858304 
debian-edu-doc-es_1.5~20130228~7.0_all.deb
 8817e4b66f9859a5a674d08869eb3076538b930f 12866032 
debian-edu-doc-nb_1.5~20130228~7.0_all.deb
 42faa3d79616c58df3619211ad897fe9d527a77d 8708446 
debian-edu-doc-it_1.5~20130228~7.0_all.deb
 97bb98a105e66a17357b74fa10880e3911aa47bb 17744786 
debian-edu-doc-fr_1.5~20130228~7.0_all.deb
Checksums-Sha256: 
 fab79a0b7a73104b5344728beb20405c5a50ad715340dc9132eadd3fbc670837 2495 
debian-edu-doc_1.5~20130228~7.0.dsc
 4361be47203adc27f7537a8bff250c42ee1f8012e2d5fc942c8ce5d043222864 36621863 
debian-edu-doc_1.5~20130228~7.0.tar.gz
 6e53a1bbd44fdae22ee4ef17eb9828c4bd850aafcc13f517b61d5d60c8057e24 19268530 
debian-edu-doc-en_1.5~20130228~7.0_all.deb
 cc60cedc76984a012849d49beeb587a472c31edafa23bca0949ae719c85030c2 6113458 
debian-edu-doc-da_1.5~20130228~7.0_all.deb
 1ce0d07c6d913310ea1da3a19c3f77ebe1b2c377458249cfe0ffee58c0db9292 10820986 
debian-edu-doc-de_1.5~20130228~7.0_all.deb
 1d0c1a895168ccc0ab8134e0a0e0dee4a7007c122007aaa966274be2383855b2 9858304 
debian-edu-doc-es_1.5~20130228~7.0_all.deb
 5962583359b25e74250570cf6e11c58e6e0f85c59eb68b1de6a499df6c48e259 12866032 
debian-edu-doc-nb_1.5~20130228~7.0_all.deb
 85746dbd21db6925b8c550300b4906f991d37d77f8d3c8a385873d44c198eea6 8708446 
debian-edu-doc-it_1.5~20130228~7.0_all.deb
 e511908970c314cd603a242a45bd7741448b3460c15300404c68fcd3bed55ba8 17744786 
debian-edu-doc-fr_1.5~20130228~7.0_all.deb
Files: 
 bd92e1c9c8458864751e0b52c97a5ae4 2495 doc optional 
debian-edu-doc_1.5~20130228~7.0.dsc
 ea38a66ae06a82b641ae58e7f9ecbdcc 36621863 doc optional 
debian-edu-doc_1.5~20130228~7.0.tar.gz
 c7862434e20b65b80d5f084d9a79ce2c 19268530 doc optional 
debian-edu-doc-en_1.5~20130228~7.0_all.deb
 850562c3e95ef39c92344be70eefcec2 6113458 doc optional 
debian-edu-doc-da_1.5~20130228~7.0_all.deb
 661f232e6d6f017ecbb1fd82b6e5cc1e 10820986 doc optional 
debian-edu-doc-de_1.5~20130228~7.0_all.deb
 cd302b8efead5050eea3bccc862e67b8 9858304 doc optional 
debian-edu-doc-es_1.5~20130228~7.0_all.deb
 f2c49e64919900941846bf80da940aaa 12866032 doc optional 
debian-edu-doc-nb_1.5~20130228~7.0_all.deb
 2a875bf2282dedc35ea1a14e9e8d9e59 8708446 doc optional 
debian-edu-doc-it_1.5~20130228~7.0_all.deb
 d178e18334c4c21a06c8d721ceb3dcc3 17744786 doc optional 
debian-edu-doc-fr_1.5~20130228~7.0_all.deb

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

iQIcBAEBCAAGBQJRL/SBAAoJELgqIXr9/gnyb6sP/jL+Gn/BjNdappvzXNc8AzUf
IcK1EEcRr5csOB9JpkEtJ8bfln3AMTIUV1WD6uCo7jXXKldZl/9DUcqMxRmK/kr0
jZlQFXN5UbOelOXEsHoci8YM37ORmxgyXQBY8UpTO5CfgMkDGKnWUccarxJklrZk
aXMMNu9UaMOPjvgGjzLGX9/31tzO8p6tqzx+t5uiaW+3/3gcbWadsodirmIZCMZr
T900dljq3etFdyTmWHBqiHPZivGw9XVnss4OkVBw7KwjbILsi54rGz/yVgjEMBG2
YTnXJdNwodIdjtlANIszGNCFnxpiuBd5CVIgsA+IX1aQUK+yPSDt7lUxgYMR4ZZ1
hS19fzYeOZ/5N56vLvlpo+KPwFQz+lh+xdR1z2UlR3CIBFl0QG1/hp4CD+4bnxXH
i36WddOzGjHF4V5fdcLZ+G6xHjAw3PKo7P5YdLyXVP37AUlERtPi2JGDh0D3IWLy
WvXIFTNoR/yUY9LwN4YQ66AVZhsO9aRP5x+6axNwHevbxhJVy01/Kp1uBn77azBi
xk8+LiPESdWRxjsPnhln57Szsd/+/AjeQhD4biA6+hC8wqEV41Ta2+XhUeyOoukQ
b2MSc9gjsMnRfoQhx03SUgHySNy2CQ2DO77uWWuidoz1husX3SA5sDT5XAB33kJa
D459Ra/rG70AkNPl1R60
=BjcJ
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas

Accepted sopwith 1.8.0-1 (source amd64)

2013-02-28 Thread Kenneth J. Pronovici
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 01 Mar 2013 00:49:47 +
Source: sopwith
Binary: sopwith
Architecture: source amd64
Version: 1.8.0-1
Distribution: unstable
Urgency: low
Maintainer: Kenneth J. Pronovici prono...@debian.org
Changed-By: Kenneth J. Pronovici prono...@debian.org
Description: 
 sopwith- port of the 1980's side-scrolling WWI dogfighting game
Changes: 
 sopwith (1.8.0-1) unstable; urgency=low
 .
   * New upstream release.
 - Update debian/patches/remove-auto-files.patch to match new code
Checksums-Sha1: 
 943bee3096617b2bc0e3f0d9dc41c44b19513046 1161 sopwith_1.8.0-1.dsc
 0ed85abc9d1b3be4b1be8b8b71005e44c4a66bc3 355148 sopwith_1.8.0.orig.tar.gz
 8506bc01eff46e38c3700ae279cd456dce4ec13a 24014 sopwith_1.8.0-1.debian.tar.gz
 0d724b4eeaf9c8b3d799c829d21f2bb4d2b6990e 65568 sopwith_1.8.0-1_amd64.deb
Checksums-Sha256: 
 800f5c8d3e6d8da32a0a84d63d6678d6b6dcd3dbea7194038617f0fb7562ab10 1161 
sopwith_1.8.0-1.dsc
 216eabcb4c6510c973805e33443853c211ad0bdef1819cf1610bb6a108224634 355148 
sopwith_1.8.0.orig.tar.gz
 fa6391206ce6af4dfb852c084199a471655593977874909097a0206fab2156b9 24014 
sopwith_1.8.0-1.debian.tar.gz
 5748298ee601f5f34048a66d02e5476f24f693a7542fa3bc1f5b9b8f2a4f28e5 65568 
sopwith_1.8.0-1_amd64.deb
Files: 
 aa3d9e605fcab2621afb72f2f2cb20fc 1161 games optional sopwith_1.8.0-1.dsc
 1ba378f9b5779ec932e26e6b6d67b870 355148 games optional 
sopwith_1.8.0.orig.tar.gz
 ed5529c6d3b012f55ab9ec3a730ab3c6 24014 games optional 
sopwith_1.8.0-1.debian.tar.gz
 c0904b0af7d416c19bf1eb67b6f52ff3 65568 games optional sopwith_1.8.0-1_amd64.deb

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

iEYEARECAAYFAlEwBD4ACgkQ8On2ujzZUQTyqACgrg3X9kKCqEnrpLAoea/8kTsz
giAAoNWNWl7tlUkmSKA8Skp5bvlcLiE9
=QdDi
-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/e1ubf4o-0008u0...@franck.debian.org



Accepted bmon 3.0+git20110323-1 (source amd64)

2013-02-28 Thread Dmitry Smirnov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 15:35:15 +1100
Source: bmon
Binary: bmon
Architecture: source amd64
Version: 3.0+git20110323-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry Smirnov only...@member.fsf.org
Changed-By: Dmitry Smirnov only...@member.fsf.org
Description: 
 bmon   - portable bandwidth monitor and rate estimator
Closes: 347994 449522 496091 534823 555213 562118 615385
Changes: 
 bmon (3.0+git20110323-1) unstable; urgency=low
 .
   * New upstream version [March 2011]
 (Closes: #449522, #347994).
   * build with dh-autoreconf (Closes: #534823).
   * build with all hardening.
   * convert to debian source format 3.0 (quilt).
   * xz compression for .deb file(s) and Debian source.
   * dh/compat to version 9; standards to 3.9.4
   * debian/copyright to copyright-format-1.0 (Closes: #562118).
   * new maintainer (Closes: #555213).
   * new Homepage (Closes: #615385).
   * updated .menu file (Closes: #496091).
   * validated .desktop file.
   * get-orig-source to generate orig.tar.
   * new patch with manpage corrections (lintianisation).
   * added debian/watch.
   * added VCS links.
Checksums-Sha1: 
 038d48522ec0fc672f3ebb7e96b2280a277a0db3 1956 bmon_3.0+git20110323-1.dsc
 acd8437dad6641f26cdd849f9060e34c8a9ee03d 109924 
bmon_3.0+git20110323.orig.tar.xz
 0baa5e1599720fba5dffb0d8a9ea7249b369c1fa 4900 
bmon_3.0+git20110323-1.debian.tar.xz
 3d4cb5dc7769512891ea70a8fc9651314d1f5fda 47584 bmon_3.0+git20110323-1_amd64.deb
Checksums-Sha256: 
 6e98af02f9a7fa2bd7e604449898bcc40677d328ac5253e79c628d5838e787cc 1956 
bmon_3.0+git20110323-1.dsc
 452f630e5e5ef1b0ab8c4eda4b51bd34fc06fb99dd5ad6d65267235b75cb9ae2 109924 
bmon_3.0+git20110323.orig.tar.xz
 918b2aaff1f22b615b45f6f8fceb7066c61b1d9b03ff1742bdf036c0997f2999 4900 
bmon_3.0+git20110323-1.debian.tar.xz
 1ff48d066238e7052488968e21a0523f0bc81e9215fea66ef3fbef6302d0c237 47584 
bmon_3.0+git20110323-1_amd64.deb
Files: 
 d83c49f7b60664c59e23cf6d392c95fd 1956 net optional bmon_3.0+git20110323-1.dsc
 9b527be34298ddeadb248b86b1f7f53b 109924 net optional 
bmon_3.0+git20110323.orig.tar.xz
 c91451acea6c11c4506028bcadf15fad 4900 net optional 
bmon_3.0+git20110323-1.debian.tar.xz
 cd9406b1bf222d5a55dfacd638f34eb3 47584 net optional 
bmon_3.0+git20110323-1_amd64.deb

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

iQIcBAEBCAAGBQJRMAymAAoJEHQmOzf1tfkTproQAJObnRNPvCNg+Slcv4qq3Y6d
O7lNU4VLgpXGqb8sUvEg5Lj3IytWBLSycTHTSOHlpFqWMpOhCvY6ARsFj6B+va82
Mcxa1J/XALfTlKd6tGGoVHGeVB+0R8hZs09mv/uBi/DoveO325q4KFKWIJw4vLMj
kPqpggY6yq+mwD4sdVAu3Btdd6BRAMThTRWy94k3aEqeJY6OlPedNHbpHHn73Cw9
MdsOlLflnkIxQVMqJCdrK2gXPMcHM3RdZNTfKpoA6EO3kSy/BvAeP9ZPgXYUtZZf
mgKvpxxwxTjmJmtJXjUfiJjvPzLXKRKKqdFOODyAiUjTRhjbNyyF6GM9u06d3/uF
Tnw0tAcsj4CzNgJm7axh85dRIRGd8+sSShOAmhVsBVk+it9jF98l+wHhjimyqU+h
+IEIhnn56H8xcseuubaWQUQ0HVtdHa5jTg7Er0e9MXwpVTUYpB21SiAcDkccsyKA
h9hKL0rcOFZRuf3jzg+sHZE9kRvuMTovASgcA1kU9NKF22y1GLLLYVhrJhabx0W0
9QCscsi4kYRqbwrpHrZ2qRT6XK4a5w3EkiHuZVLItHoGZeIzW++rkz5qulW2Ochv
8Xw4J/F/bqOihaUiozITGjLKZDHZ6y7GHjytm++y1Cv+w0fjxEqssIneTtbFKYbi
DVN+ViYBFahBWQiXj0Ge
=n4ro
-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/e1ubg0q-0007fd...@franck.debian.org



Accepted openconnect 3.20-4 (source amd64)

2013-02-28 Thread Mike Miller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Feb 2013 23:42:31 -0500
Source: openconnect
Binary: openconnect libopenconnect1 libopenconnect-dev
Architecture: source amd64
Version: 3.20-4
Distribution: unstable
Urgency: low
Maintainer: Mike Miller mtmil...@ieee.org
Changed-By: Mike Miller mtmil...@ieee.org
Description: 
 libopenconnect-dev - Open client for Cisco AnyConnect VPN - development files
 libopenconnect1 - Open client for Cisco AnyConnect VPN - shared library
 openconnect - Open client for Cisco AnyConnect VPN
Closes: 700805
Changes: 
 openconnect (3.20-4) unstable; urgency=low
 .
   * debian/patches/03_fix-abuse-of-realloc.patch: Backport patch from upstream
 to fix possible memory leaks on realloc. (Closes: #700805)
Checksums-Sha1: 
 2eb28bd3ac9fc8d7733dd8b6d69dd3bcca23305f 2070 openconnect_3.20-4.dsc
 f3bf5b9532eb0edd380999040f2422b89084a289 8718 openconnect_3.20-4.debian.tar.gz
 e30b5e67bf0e1046e399526fd68b32e1e84167aa 197630 openconnect_3.20-4_amd64.deb
 0bc3c28316592ba287090b93fbdb1a61f9c0cd9e 43566 libopenconnect1_3.20-4_amd64.deb
 9632900dfa05f2d9c6363ca09ab519a7254b84cf 17938 
libopenconnect-dev_3.20-4_amd64.deb
Checksums-Sha256: 
 ffc10e06b17c0a7c988c50e689bfcdb9318b3a233047193fe44af74a906b182c 2070 
openconnect_3.20-4.dsc
 98e7a83ae2df4303b1f73da21147b5f97e3414a86348e9f902f60f50901bed34 8718 
openconnect_3.20-4.debian.tar.gz
 102114d1233a214e34023965775621a4b1b7d0a2c9ea35ba263d2751b848c0e1 197630 
openconnect_3.20-4_amd64.deb
 86bf89ebdd970305c98a7dfa6ea41f8f6c16cf2b9a1c4258f62352196d738077 43566 
libopenconnect1_3.20-4_amd64.deb
 c48658422aa693437fe0b1d50c6cb7a1f5e850d406596fe411ba35f8bcb5fe05 17938 
libopenconnect-dev_3.20-4_amd64.deb
Files: 
 c1ae72bf7b949ff9dd8ba8183f3f6b0e 2070 net optional openconnect_3.20-4.dsc
 e3c4d412b7cf7149e670f0de237797ea 8718 net optional 
openconnect_3.20-4.debian.tar.gz
 c2c739f3d3f0391161effd8ed07f8f30 197630 net optional 
openconnect_3.20-4_amd64.deb
 45c1f8881c43ad669323b596ef93a08a 43566 libs optional 
libopenconnect1_3.20-4_amd64.deb
 db391a88293f166b488d2d0f77a1474a 17938 libdevel optional 
libopenconnect-dev_3.20-4_amd64.deb

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

iQIcBAEBCAAGBQJRMDNoAAoJECj6gBpDvdY3VuUQALzfARrC99fUVr5S7CkqD5c5
0UuBsgKZl3fF6DGBMuyzLqej6jzBl41jnC7U2s6o8m72w6S+oy+V/z0rqGR9S+Nt
qMNSQp7trmuz3IZdMMAVuwEG4YJ8INa8XQIjbv8toUE811vvSkyf8Copv7VQu0aC
FHhfDl3QlC8NL2XT0J8GM/R7SDxYKHHe+CBSk8B8QfYZUphlhd+P2qr11+YATy1O
mHmxr7zACrpCm/SiDX04vtsfDutZM6Z+Lg2DU/UVqtp8aJSTkeYVoCpryMViB4Wa
yeiCz1sZM0Hu2v+mtKs5pGYCOjjbQJgKwaDwL0wk9bQKsFzJwiYxA2Q9UG65Ou0k
Hnm5l70uaqXQwOqM3+/7bcTSEmOwX0+UKVkQ4o7Cch7W+iMVjkEbzdyWASabMjZb
bqmVo2BPONW0aVjEppzSjip0y9xJ2AULxcfN+mNF09O+RUSd5IqA/l3hxbK50Rab
1WurcaufcHTnjnKHuSbHUXrW+usiOvk/qkZF/Iwc548FYmFPsQXjUpq34rvOStGe
sxRjaOzOhT5suZgUNolyTYViBPGNHGAQuGTeRAUJvZnCtq9L2jbFHRCDNaO3ZWDH
BYNkX0bPB5e3ABSqLoQ+2wavvNrstHhQeYkT3w52u/vVY2ISJhLbE5pjZ1cDrP7u
BmlXHuGXhcsxjbFd64XM
=5wkE
-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/e1ubi74-0002lh...@franck.debian.org



Accepted sudo 1.8.5p2-1+nmu1 (source amd64)

2013-02-28 Thread Michael Gilbert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 01 Mar 2013 03:26:37 +
Source: sudo
Binary: sudo sudo-ldap
Architecture: source amd64
Version: 1.8.5p2-1+nmu1
Distribution: unstable
Urgency: high
Maintainer: Bdale Garbee bd...@gag.com
Changed-By: Michael Gilbert mgilb...@debian.org
Description: 
 sudo   - Provide limited super user privileges to specific users
 sudo-ldap  - Provide limited super user privileges to specific users
Closes: 701838 701839
Changes: 
 sudo (1.8.5p2-1+nmu1) unstable; urgency=high
 .
   * Non-maintainer upload by the Security Team.
   * Fix cve-2013-1775: authentication bypass when the clock is set to the UNIX
 epoch [00:00:00 UTC on 1 January 1970] (closes: #701838).
   * Fix cve-2013-1776: session id hijacking from another authorized tty
 (closes: #701839).
Checksums-Sha1: 
 05a116304df73e20148759ebfecee6f9dfe96725 2589 sudo_1.8.5p2-1+nmu1.dsc
 2052bd6151dc62d71715762e6a192df404a9235f 26822 
sudo_1.8.5p2-1+nmu1.debian.tar.gz
 b47bb046d0fa4ce2c1743c1e45e9d42a6c5251c4 842220 sudo_1.8.5p2-1+nmu1_amd64.deb
 cd0baf39ba2dc417d3dd4bc97e95e4732d176607 863082 
sudo-ldap_1.8.5p2-1+nmu1_amd64.deb
Checksums-Sha256: 
 aefcde86fe6b74b5ce1affd52b057dc68c969ced29f1292ac3a937763d2380d8 2589 
sudo_1.8.5p2-1+nmu1.dsc
 15b44cd8f4542352b20629d8fe786d14d47e3b35fd86a05648658ec390423835 26822 
sudo_1.8.5p2-1+nmu1.debian.tar.gz
 557c3147b18d5f09bdb60a83ad6ce30a5243d903fbad714beca233cb856cb8b2 842220 
sudo_1.8.5p2-1+nmu1_amd64.deb
 545bd3a0d15ceaa9d9c71edd61f196dee0262ea762750e61ea28df32fac40259 863082 
sudo-ldap_1.8.5p2-1+nmu1_amd64.deb
Files: 
 0d259053017092470a1d804503ee3a42 2589 admin optional sudo_1.8.5p2-1+nmu1.dsc
 149d2138846fc7121cfcd3ff4df7fea9 26822 admin optional 
sudo_1.8.5p2-1+nmu1.debian.tar.gz
 3df5acae3e544aba6916085f6a169181 842220 admin optional 
sudo_1.8.5p2-1+nmu1_amd64.deb
 f3d220876a4edde1a03ab41d609bfda4 863082 admin optional 
sudo-ldap_1.8.5p2-1+nmu1_amd64.deb

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

iQQcBAEBCAAGBQJRMDsnAAoJELjWss0C1vRzsYEf/2aKdfhZH9f+IzeQ0il8q8Ax
9HgqOT0uD15LWPOoy5nNNYLHACtBeuYte6l72dfDbCoUz+o220PFbhQtOoXuwAjn
wj0joyPHmiHYW4+vvRYoJ5z56UC836Hyg2FlEVVnN2f16rSrAw0XQtfkvm8B2s9N
Coosf0ue6HElezXa0uznq0F49Spv9TJ324nneslEH8uBg/1yvPp14HQs6EA+a0/W
u7IV1rxWAY+W4PD5+j5sSbOI5EiibsMPidNrrrdZkLue4RNPL8PIRguwww8A+O3a
ZuUAS6PX/8TAr345GzqyR0Navj+hnyWre+XRhXrKhMfTbV2cPwGoduRhma4XtNdw
dvElLNPtAs9xQHjJoQp9K9HTKT8OJa6kQxX4Iv4qTdkutIpEeqZ4UcW4h9802Iom
EDsTAWo6rXOdOm8ccRaNxs2xswC0GiO0pX2XbsUIsJtN7lWhG3s1sVBO9kw506CA
f4VfuU+hnvHYtUQ5xizVs6OzWGF1hu4Z/rrjxzp6rfqJJb22OuLgp8K3ZIHjsacX
WDys1nPSDflIVz4Y0YlPSXCk3qYaFKC/XZEBYPOFHBTmro6nIJfa9aZpmDYgm0jE
9z3qtE1whV4O+7bEZcl/LyKHqQO2GsPZEZl0GWolSnAsIUXZDS7TYY7UVXmOIcFY
b0Lqtr+/Zkzi+sULl7vB1rrOzEGYhQ3Yb9qu+V7VoGGt1HhVwphzcvuiMmcGVswu
pAsgTUpvwRy4NKxxRwjRm27dyBtOLT8p8Xq66okF5EgGnRezbqiZFDUvO5VEQM/G
+YIB/brpKD4YkuQb2zdXAu31oPRNIKFy6Abs1R1aFMVNnY56cgy1G6zPezmdHgwu
irLLGKU7RB6VENJdncn28sdiXDgBFchFHRERinGutRqZCzPjSe2Omvsf9Q4CuqAx
s8WgLnFGYCCQG62a8cmqr+DcUuhu5+oaSUrMWJVsyJ2KmBbgHt7J4RcsaB7IuHId
QB4ebrNvIbs7+G0Z/AG3DURFjGJSBCBglMm6qZFIuBwitj7b3qCUhTi3Bdtf1bFF
eXNSqHoF5gbXWIp6vAjmKffc0mrZTdQBXOANtxxHWS8D7nhcf95dkn8C6tDjtGKi
pX2Ab4G8CEKGdUmRvnrCqG7GkI8exTzxtwRlFqTpZwFNKQVqojvkn4elfOsl
hKmwSJWQbMnnpsRB1l7tHDRfj000dgDtXAmNNmdsaLqdeYOZ+bMS1zKHrN8iVYIu
mhuc4TT7iRtkOAeSYY7MWIV47vBRhXlAWU8UGqXzQpH2mG/Jns6aBCCiKFJCUo5Q
DUlwrsSUb7jOrPvGd/as2gKmwushPLBE37KgsNv7SuVQVne7SAPkhOUrWN1cX2k=
=pgRW
-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/e1ubiat-0007fm...@franck.debian.org



Accepted erlang 1:16.b-dfsg-1 (source all i386)

2013-02-28 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 09:08:37 +0400
Source: erlang
Binary: erlang-base erlang-base-hipe erlang-appmon erlang-asn1 
erlang-common-test erlang-corba erlang-crypto erlang-debugger erlang-dialyzer 
erlang-diameter erlang-doc erlang-edoc erlang-eldap erlang-erl-docgen erlang-et 
erlang-eunit erlang-gs erlang-ic erlang-ic-java erlang-inets erlang-inviso 
erlang-manpages erlang-megaco erlang-mnesia erlang-observer erlang-odbc 
erlang-os-mon erlang-parsetools erlang-percept erlang-pman erlang-public-key 
erlang-reltool erlang-runtime-tools erlang-snmp erlang-ssh erlang-ssl 
erlang-syntax-tools erlang-test-server erlang-toolbar erlang-tools erlang-tv 
erlang-typer erlang-webtool erlang-wx erlang-xmerl erlang-dev erlang-src 
erlang-examples erlang-jinterface erlang-mode erlang-nox erlang-x11 erlang
Architecture: source all i386
Version: 1:16.b-dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian Erlang Packagers pkg-erlang-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 erlang - Concurrent, real-time, distributed functional language
 erlang-appmon - Erlang/OTP application monitor
 erlang-asn1 - Erlang/OTP modules for ASN.1 support
 erlang-base - Erlang/OTP virtual machine and base applications
 erlang-base-hipe - Erlang/OTP HiPE enabled virtual machine and base 
applications
 erlang-common-test - Erlang/OTP application for automated testing
 erlang-corba - Erlang/OTP applications for CORBA support
 erlang-crypto - Erlang/OTP cryptographic modules
 erlang-debugger - Erlang/OTP application for debugging and testing
 erlang-dev - Erlang/OTP development libraries and headers
 erlang-dialyzer - Erlang/OTP discrepancy analyzer application
 erlang-diameter - Erlang/OTP implementation of RFC 3588 protocol
 erlang-doc - Erlang/OTP HTML/PDF documentation
 erlang-edoc - Erlang/OTP module for generating documentation
 erlang-eldap - Erlang/OTP LDAP library
 erlang-erl-docgen - Erlang/OTP documentation stylesheets
 erlang-et  - Erlang/OTP event tracer application
 erlang-eunit - Erlang/OTP module for unit testing
 erlang-examples - Erlang/OTP application examples
 erlang-gs  - Erlang/OTP graphics system
 erlang-ic  - Erlang/OTP IDL compiler
 erlang-ic-java - Erlang/OTP IDL compiler (Java classes)
 erlang-inets - Erlang/OTP Internet clients and servers
 erlang-inviso - Erlang/OTP trace tool
 erlang-jinterface - Java communication tool to Erlang
 erlang-manpages - Erlang/OTP manual pages
 erlang-megaco - Erlang/OTP implementation of Megaco/H.248 protocol
 erlang-mnesia - Erlang/OTP distributed relational/object hybrid database
 erlang-mode - Erlang major editing mode for Emacs
 erlang-nox - Erlang/OTP applications that don't require X Window System
 erlang-observer - Erlang/OTP application for investigating distributed systems
 erlang-odbc - Erlang/OTP interface to SQL databases
 erlang-os-mon - Erlang/OTP operating system monitor
 erlang-parsetools - Erlang/OTP parsing tools
 erlang-percept - Erlang/OTP concurrency profiling tool
 erlang-pman - Erlang/OTP process manager
 erlang-public-key - Erlang/OTP public key infrastructure
 erlang-reltool - Erlang/OTP release management tool
 erlang-runtime-tools - Erlang/OTP runtime tracing/debugging tools
 erlang-snmp - Erlang/OTP SNMP applications
 erlang-src - Erlang/OTP applications sources
 erlang-ssh - Erlang/OTP implementation of SSH protocol
 erlang-ssl - Erlang/OTP implementation of SSL
 erlang-syntax-tools - Erlang/OTP modules for handling abstract Erlang syntax 
trees
 erlang-test-server - Erlang/OTP server for automated application testing
 erlang-toolbar - Erlang/OTP graphical toolbar
 erlang-tools - Erlang/OTP various tools
 erlang-tv  - Erlang/OTP table viewer
 erlang-typer - Erlang/OTP code type annotator
 erlang-webtool - Erlang/OTP helper for web-based tools
 erlang-wx  - Erlang/OTP bindings to wxWidgets
 erlang-x11 - Erlang/OTP applications that require X Window System
 erlang-xmerl - Erlang/OTP XML tools
Changes: 
 erlang (1:16.b-dfsg-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 de20f3b54983bd8e5b58f1e39232da935b150300 4605 erlang_16.b-dfsg-1.dsc
 45ce08d3c5f4f85e9dd6f8f7a0f296c6f56ed288 35567026 erlang_16.b-dfsg.orig.tar.gz
 60ea022a1a306d2ccbf3d81e07833a2624039502 69805 erlang_16.b-dfsg-1.diff.gz
 37025305089085022ee9b1bfbe8b73cf47b77b35 16151572 
erlang-doc_16.b-dfsg-1_all.deb
 aca2f775d21da6e07516fdda96cb9f83433be532 68020 
erlang-ic-java_16.b-dfsg-1_all.deb
 f923941f2a223ad9f0f86fd2f0ca09f95809fe91 1618668 
erlang-manpages_16.b-dfsg-1_all.deb
 33b1e9876fc698aba868ebb3a9dbb8f46add9e48 5393170 erlang-src_16.b-dfsg-1_all.deb
 06091f9e32348b84ad4ab97e094ec00683484ee0 1036316 
erlang-examples_16.b-dfsg-1_all.deb
 d718319dd7864e01932036c58521ea096edfdccc 120446 
erlang-jinterface_16.b-dfsg-1_all.deb
 dc3d0a9ca1815304b5f775a27997e0dcc70b94f4 97472 erlang-mode_16.b-dfsg-1_all.deb
 b13a4c8d8770e1996198626326dc22ef9a6c6e0c 

Accepted gcc-4.8 4.8-20130228-1 (source all amd64)

2013-02-28 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 01 Mar 2013 00:18:07 +0100
Source: gcc-4.8
Binary: gcc-4.8-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc-4.8-dev 
libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib64gcc-4.8-dev lib32gcc1 
lib32gcc1-dbg lib32gcc-4.8-dev libn32gcc1 libn32gcc1-dbg libn32gcc-4.8-dev 
libx32gcc1 libx32gcc1-dbg libx32gcc-4.8-dev gcc-4.8 gcc-4.8-multilib 
gcc-4.8-plugin-dev gcc-4.8-hppa64 gcc-4.8-spu g++-4.8-spu gfortran-4.8-spu 
cpp-4.8 gcc-4.8-locales g++-4.8 g++-4.8-multilib libmudflap0 libmudflap0-dbg 
lib32mudflap0 lib32mudflap0-dbg lib64mudflap0 lib64mudflap0-dbg libn32mudflap0 
libn32mudflap0-dbg libx32mudflap0 libx32mudflap0-dbg libmudflap0-4.8-dev 
libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg 
libn32gomp1 libn32gomp1-dbg libx32gomp1 libx32gomp1-dbg libitm1 libitm1-dbg 
lib32itm1 lib32itm1-dbg lib64itm1 lib64itm1-dbg libn32itm1 libn32itm1-dbg 
libx32itm1 libx32itm1-dbg libatomic1 libatomic1-dbg lib32atomic1 
lib32atomic1-dbg lib64atomic1 lib64atomic1-dbg libn32atomic1 libn32atomic1-dbg 
libx32atomic1
 libx32atomic1-dbg libasan0 libasan0-dbg lib32asan0 lib32asan0-dbg lib64asan0 
lib64asan0-dbg libn32asan0 libn32asan0-dbg libx32asan0 libx32asan0-dbg libtsan0 
libtsan0-dbg libquadmath0 libquadmath0-dbg lib32quadmath0 lib32quadmath0-dbg 
lib64quadmath0 lib64quadmath0-dbg libn32quadmath0 libn32quadmath0-dbg 
libx32quadmath0 libx32quadmath0-dbg gobjc++-4.8 gobjc++-4.8-multilib gobjc-4.8 
gobjc-4.8-multilib libobjc-4.8-dev lib64objc-4.8-dev lib32objc-4.8-dev 
libn32objc-4.8-dev libx32objc-4.8-dev libobjc4 libobjc4-dbg lib64objc4 
lib64objc4-dbg lib32objc4 lib32objc4-dbg libn32objc4 libn32objc4-dbg 
libx32objc4 libx32objc4-dbg gfortran-4.8 gfortran-4.8-multilib 
libgfortran-4.8-dev lib64gfortran-4.8-dev lib32gfortran-4.8-dev 
libn32gfortran-4.8-dev libx32gfortran-4.8-dev libgfortran3 libgfortran3-dbg 
lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg 
libn32gfortran3 libn32gfortran3-dbg libx32gfortran3 libx32gfortran3-dbg 
gccgo-4.8 gccgo-4.8-multilib libgo3
 libgo3-dbg lib64go3 lib64go3-dbg lib32go3 lib32go3-dbg libn32go3 libn32go3-dbg 
libx32go3 libx32go3-dbg libstdc++6 lib32stdc++6 lib64stdc++6 libn32stdc++6 
libx32stdc++6 libstdc++-4.8-dev libstdc++-4.8-pic libstdc++6-4.8-dbg 
lib32stdc++-4.8-dev lib32stdc++6-4.8-dbg lib64stdc++-4.8-dev 
lib64stdc++6-4.8-dbg libn32stdc++-4.8-dev libn32stdc++6-4.8-dbg 
libx32stdc++-4.8-dev libx32stdc++6-4.8-dbg libstdc++-4.8-doc gcc-4.8-soft-float 
fixincludes
 gcc-4.8-source
Architecture: source all amd64
Version: 4.8-20130228-1
Distribution: experimental
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 cpp-4.8- GNU C preprocessor
 fixincludes - Fix non-ANSI header files
 g++-4.8- GNU C++ compiler
 g++-4.8-multilib - GNU C++ compiler (multilib files)
 g++-4.8-spu - SPU cross-compiler (C++ compiler)
 gcc-4.8- GNU C compiler
 gcc-4.8-base - GCC, the GNU Compiler Collection (base package)
 gcc-4.8-hppa64 - GNU C compiler (cross compiler for hppa64)
 gcc-4.8-locales - GCC, the GNU compiler collection (native language support 
files)
 gcc-4.8-multilib - GNU C compiler (multilib files)
 gcc-4.8-plugin-dev - Files for GNU GCC plugin development.
 gcc-4.8-soft-float - GCC soft-floating-point gcc libraries (ARM)
 gcc-4.8-source - Source of the GNU Compiler Collection
 gcc-4.8-spu - SPU cross-compiler (preprocessor and C compiler)
 gccgo-4.8  - GNU Go compiler
 gccgo-4.8-multilib - GNU Go compiler (multilib files)
 gfortran-4.8 - GNU Fortran compiler
 gfortran-4.8-multilib - GNU Fortran compiler (multilib files)
 gfortran-4.8-spu - SPU cross-compiler (Fortran compiler)
 gobjc++-4.8 - GNU Objective-C++ compiler
 gobjc++-4.8-multilib - GNU Objective-C++ compiler (multilib files)
 gobjc-4.8  - GNU Objective-C compiler
 gobjc-4.8-multilib - GNU Objective-C compiler (multilib files)
 lib32asan0 - AddressSanitizer -- a fast memory error detector (32bit)
 lib32asan0-dbg - AddressSanitizer -- a fast memory error detector (32 bit 
debug sy
 lib32atomic1 - support library providing __atomic built-in functions (32bit)
 lib32atomic1-dbg - support library providing __atomic built-in functions (32 
bit deb
 lib32gcc-4.8-dev - GCC support library (32 bit development files)
 lib32gcc1  - GCC support library (32 bit Version)
 lib32gcc1-dbg - GCC support library (debug symbols)
 lib32gfortran-4.8-dev - Runtime library for GNU Fortran applications (32bit 
development f
 lib32gfortran3 - Runtime library for GNU Fortran applications (32bit)
 lib32gfortran3-dbg - Runtime library for GNU Fortran applications (32 bit 
debug symbol
 lib32go3   - Runtime library for GNU Go applications (32bit)
 lib32go3-dbg - Runtime library for GNU Go applications (32 bit debug symbols)
 lib32gomp1 - GCC OpenMP (GOMP) support library (32bit)
 lib32gomp1-dbg - GCC OpenMP (GOMP) support library (32 bit debug symbols)
 lib32itm1

Accepted wiggle 0.8+dfsg1-2 (source amd64)

2013-02-28 Thread Jari Aalto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 10:59:53 +0200
Source: wiggle
Binary: wiggle
Architecture: source amd64
Version: 0.8+dfsg1-2
Distribution: unstable
Urgency: low
Maintainer: Jari Aalto jari.aa...@cante.net
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 wiggle - apply patches with conflicting changes
Closes: 699715
Changes: 
 wiggle (0.8+dfsg1-2) unstable; urgency=low
 .
   * debian/control
 - (Homepage): Update broken URL to Freecode (Closes: #699715).
   * debian/copyright
 - Update upstream URL locations. See above bug.
Checksums-Sha1: 
 b54415dd93e77c81cf8427391239c76d231920ed 1865 wiggle_0.8+dfsg1-2.dsc
 6afa64aaec5c3fe8b609a6c2798a2cd94fc0f332 3876 wiggle_0.8+dfsg1-2.debian.tar.gz
 ac043a56e48887390aec93b289860cf03d2870cd 69490 wiggle_0.8+dfsg1-2_amd64.deb
Checksums-Sha256: 
 abd1dd42469f0f986e92d800bfb2b8343d99726dc59c62a498f5ec2f8167a2e0 1865 
wiggle_0.8+dfsg1-2.dsc
 86c810505db2c33bc9bbdeef88729f863acb805b7dc8fc8b7680183a1f1a1a67 3876 
wiggle_0.8+dfsg1-2.debian.tar.gz
 2268aefa6ca7d4944cc99a151b524b8fabc114f74071de7b1e39ed8ab8c44c87 69490 
wiggle_0.8+dfsg1-2_amd64.deb
Files: 
 c3c453631f2c370e4725a0a2d36bb24e 1865 vcs optional wiggle_0.8+dfsg1-2.dsc
 f562696229d33e954fe956c353ecbb57 3876 vcs optional 
wiggle_0.8+dfsg1-2.debian.tar.gz
 da6bb50ad13fee91015c2b90bc362232 69490 vcs optional 
wiggle_0.8+dfsg1-2_amd64.deb

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

iQIcBAEBAgAGBQJRME4/AAoJECHSBYmXSz6WYYAP/jT745OeTv/HCgOhXdsS5kZT
QZFrh+Cb1pi1W3iiEKIaeqbzU1TPfdvYQ0bAhp+rA82r9XGJZKV6f+LfabvibdI1
uQjaeVS8HOYoSX8MXtegHiUEW4+65q09C4tLY9dOWe9Ok6ygU2+HlZix10NGoMa5
NDyoRzFiiY6W4Ts3mXYkEdSg47o19FSEo14s9AktYYNGrvO3f7za2tTfr7e77Rpx
m39CgfeRr/VYqwDzWcMfKuX7RNxY/+mGZaSFpiiSb+/bsagbb35v5V+5CkipIdiM
JZrMV2I6nedR2sGjuiZSHbClPPwHX6+1NyFVyEMSuz0PDXSorijALa6pE7Tm/mO8
P10VSnrLO9+yTWD0U3NvJ1eFSJB/FxJrrqgQtTBF9zgKEH0yKBlWr8M2p8wzFsQb
GYlV6oKd4U7wnhXacZFur4pNV/irTyq4nNOzZJ1Z9y2qmLcELgyAZqrZwQgCXPu1
LG6Vzb4F5slyVresKz8iNlqA0tw08UQgE1EbXSlTsG91nFlpJ1x7OxMC5kSq/qNk
VxHkRzBr/kUuf1gT0lIkOwwI+uJ0/+aorhLn9V8f8tI5qcnQO8KyJ7kMaQ31BjDc
U7uXYylNAqii2lLAnwJOLubwym7naUb94Mic8HysGBjyVGbVyvnCYH085CTvs/cJ
khTcRNLTvxUyTDBnuzJf
=baF0
-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/e1ubk1j-6j...@franck.debian.org



Accepted slapos.core 0.35.1-1 (source all)

2013-02-28 Thread Arnaud Fontaine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Feb 2013 19:25:16 +0900
Source: slapos.core
Binary: slapos-client slapos-node-unofficial
Architecture: source all
Version: 0.35.1-1
Distribution: unstable
Urgency: low
Maintainer: Arnaud Fontaine ar...@debian.org
Changed-By: Arnaud Fontaine ar...@debian.org
Description: 
 slapos-client - Client-side to request applications with SlapOS
 slapos-node-unofficial - Node-side to deploy applications with SlapOS 
(unofficial)
Changes: 
 slapos.core (0.35.1-1) unstable; urgency=low
 .
   * New upstream release.
 + Refresh debian/patches/*.
 + debian/slapos-client.install: add new files.
 + debian/slapos-node-unofficial.install: new slapproxy-query command.
Checksums-Sha1: 
 9b79aae70abe43852b60574b480fb11c7fab7696 1487 slapos.core_0.35.1-1.dsc
 9cf5ac433e51d8e82519f2bb02b42bf011c0396d 113771 slapos.core_0.35.1.orig.tar.gz
 39e2078ff8437362c4f0c49036243622a09dad6c 30148 
slapos.core_0.35.1-1.debian.tar.gz
 0d237338a46e7b80fe44e477f39b8b3e9a4f8dba 48706 slapos-client_0.35.1-1_all.deb
 5c0cfb021fc3e515ba0d0c85e355c88021e8aeca 103388 
slapos-node-unofficial_0.35.1-1_all.deb
Checksums-Sha256: 
 5de4d3ce15a73bd26887cd17648dae324c432dae1e8b14993a126e8f8c3464dc 1487 
slapos.core_0.35.1-1.dsc
 e23b565fcb3a768a5373a552860e50308024408a29ff6ec6e874ec437d6b853b 113771 
slapos.core_0.35.1.orig.tar.gz
 4277f6a9cf60f1493ffc2675414c1de1c61a671197c22b1f626f2f9759b8ddf3 30148 
slapos.core_0.35.1-1.debian.tar.gz
 16eb68c5a157bc19186020fb35b0080b3604c5aa18b137e70f317d10922ea630 48706 
slapos-client_0.35.1-1_all.deb
 90bdd2b0b41f9ba49391a57d7aeb4dc4c4e0daffcaf0a4fa74d13d7a234f4a55 103388 
slapos-node-unofficial_0.35.1-1_all.deb
Files: 
 97883f8f2b2fa070981cb7d4be03c879 1487 net optional slapos.core_0.35.1-1.dsc
 1ec4b37e90560bd406b44c8f3de4727e 113771 net optional 
slapos.core_0.35.1.orig.tar.gz
 962529ba6dfba90c8a8a3bdbbbce3f15 30148 net optional 
slapos.core_0.35.1-1.debian.tar.gz
 715d604ee5435b1a5f67448e8a10bc5d 48706 net optional 
slapos-client_0.35.1-1_all.deb
 9ea3742f0b176f62fea95d8fef91f47d 103388 net optional 
slapos-node-unofficial_0.35.1-1_all.deb

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

iEYEARECAAYFAlEwVyoACgkQvfKiIF42GdOv6gCfZIfORSH89J8Jw/VPUuTyMTnd
ARwAoIish3QxGqbNeOf3Z3hApyU8NK5E
=UfEF
-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/e1ubkse-000574...@franck.debian.org