Re: init system policy

2014-11-23 Thread Edward Betts
Philip Hands p...@hands.com wrote: Not if you take into account the fact that someone will have had to do something like :wq! to get past the read-only state of the file. vim put's a [RO] after the filename when you open it, and says this when you try to write it: E45: 'readonly'

Re: systemd, fstab, noauto and nofail

2014-11-23 Thread Christian Hofstaedtler
* Simon McVittie s...@debian.org [141122 20:36]: Perhaps more to the point, Debian's initramfs-generator has been modified to mount /usr as well as the root, so only systems that have no initramfs *and* split /usr will get as far as exec()ing systemd without first mounting /usr (which is a

Re: New pre-depends: python pre-depends python-minimal

2014-11-23 Thread Wouter Verhelst
On Sat, Nov 22, 2014 at 05:06:25PM +0100, Jakub Wilk wrote: * Wouter Verhelst wou...@debian.org, 2014-11-22, 08:25: It appears that the appropriate resolution of #769106 [1] is to add a new pre-depends on python-minimal in python. This issue at hand is that at the time python2.7-minimal is

Re: Age of built packages to be part of the jessie release?

2014-11-23 Thread Wouter Verhelst
On Sat, Nov 22, 2014 at 03:36:36PM +, Neil Williams wrote: (arm64 ppc64el are both release arches for Jessie but FTBFS in packages which have never built on either of those are not RC.) To be exact, FTBFS in a package on an architecture for which it is not *currently* built is not RC. If

Bug#770704: ITP: wcwidth -- determine printable width of a string on a terminal

2014-11-23 Thread Sebastian Ramacher
Package: wnpp Severity: wishlist Owner: Sebastian Ramacher sramac...@debian.org * Package name: wcwidth Version : 0.1.4 Upstream Author : Jeff Quast * URL : https://pypi.python.org/pypi/wcwidth/0.1.4 * License : Expat Programming Lang: Python Description

Re: Help to review a patch in ELisp

2014-11-23 Thread Stéphane Aulery
Hello, Thank you very much for your accurate answers. I forwarded to the author for a decision knowingly. Regards, -- Stéphane Aulery -- To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive:

Re: Age of built packages to be part of the jessie release?

2014-11-23 Thread Stuart Prescott
Svante Signell wrote: I wonder how old a package build can be to be part of the release. Some packages are built up to a year ago, and rebuilding them now FTBFS. As others have noted already, there are period archive rebuilds to check what would now ftbfs. Slightly orthogonal to your

Re: Bug#770704: ITP: wcwidth -- determine printable width of a string on a terminal

2014-11-23 Thread Adam Borowski
On Sun, Nov 23, 2014 at 01:58:09PM +0100, Sebastian Ramacher wrote: * Package name: wcwidth * URL : https://pypi.python.org/pypi/wcwidth/0.1.4 * License : Expat Programming Lang: Python Description : determine printable width of a string on a terminal

Re: systemd, fstab, noauto and nofail

2014-11-23 Thread Vincent Danjean
On 20/11/2014 21:44, Simon McVittie wrote: noauto is appropriate for detachable/removable media that are not normally present. The other option for such media is to leave them out of fstab altogether, and use something like udisks to mount them on-demand: that's what you'd typically do in

Bug#770731: ITP: symlookup -- Utility for object symbol search in installed libraries

2014-11-23 Thread Dmitry Yu Okunev
Package: wnpp Severity: wishlist Owner: Dmitry Yu Okunev dyoku...@ut.mephi.ru * Package name: symlookup Version : 0.5.2 Upstream Author : Andrew A Savchenko birc...@users.sourceforge.net * URL : http://sourceforge.net/projects/symbol-lookup/ * License : GPL-3

Re: Architectures where unaligned access is (not) OK?

2014-11-23 Thread Simon McVittie
On 21/11/14 13:31, Bernhard R. Link wrote: Otherwise that memory might afterwards be regarded as lzo_memops_TU2_struct lzo_memops_TU2_struct is declared with __attribute__((__may_alias__)), so actually the right thing should be happening WRT aliasing in this case. On 21/11/14 13:21, Thorsten

Re: Bug#770704: ITP: wcwidth -- determine printable width of a string on a terminal

2014-11-23 Thread Jakub Wilk
* Adam Borowski kilob...@angband.pl, 2014-11-23, 16:12: Even better, it would be better to call libc's wcwidth() instead of reinventing the wheel -- as a bonus, the data would be current without need for manual intervention. Beware that wcwidth(2) is locale-dependent, which might or might not

packaging diaspora, final steps, looking for collaborators

2014-11-23 Thread Pirate Praveen
Hi, We've been working on packaging diaspora since last 2+ years. It is written in ruby on rails framework and has 206 dependencies https://people.debian.org/~praveen/diasbar/ So far we packaged around 86% of the dependencies. Now I created a diaspora package with remaining dependencies uploaded

Re: New pre-depends: python pre-depends python-minimal

2014-11-23 Thread Scott Kitterman
On Sunday, November 23, 2014 13:41:47 Wouter Verhelst wrote: On Sat, Nov 22, 2014 at 05:06:25PM +0100, Jakub Wilk wrote: * Wouter Verhelst wou...@debian.org, 2014-11-22, 08:25: It appears that the appropriate resolution of #769106 [1] is to add a new pre-depends on python-minimal in

Re: Architectures where unaligned access is (not) OK?

2014-11-23 Thread Simon McVittie
On 23/11/14 17:55, Simon McVittie wrote: Unfortunately, on my x86-64 laptop, my patched liblzo2 with -DLZO_CFG_NO_UNALIGNED on all architectures seems to be half as fast as the unpatched one [...] I'm trying out a slightly different approach: keeping the unaligned accesses via casts like

Re: Architectures where unaligned access is (not) OK?

2014-11-23 Thread Julian Taylor
On 23.11.2014 23:11, Simon McVittie wrote: On 23/11/14 17:55, Simon McVittie wrote: Unfortunately, on my x86-64 laptop, my patched liblzo2 with -DLZO_CFG_NO_UNALIGNED on all architectures seems to be half as fast as the unpatched one [...] I'm trying out a slightly different approach:

Re: Architectures where unaligned access is (not) OK?

2014-11-23 Thread Simon McVittie
On 23/11/14 22:30, Julian Taylor wrote: what works well is just replacing the offending memory loads with the memcpy call. As the size of the memcpy call is constant the compiler will take care of emitting code appropriate for the platform. Ah, even better; the timing on x86-64 comes out the

Re: Architectures where unaligned access is (not) OK?

2014-11-23 Thread Ben Hutchings
On Sun, 2014-11-23 at 23:30 +0100, Julian Taylor wrote: On 23.11.2014 23:11, Simon McVittie wrote: On 23/11/14 17:55, Simon McVittie wrote: Unfortunately, on my x86-64 laptop, my patched liblzo2 with -DLZO_CFG_NO_UNALIGNED on all architectures seems to be half as fast as the unpatched one

Re: Architectures where unaligned access is (not) OK?

2014-11-23 Thread Simon McVittie
On 23/11/14 22:54, Ben Hutchings wrote: in this function void copy_foo(struct foo *dst, const struct foo *src) { memcpy(dst, src, sizeof(*dst)); } the compiler is still allowed to assume that src has the proper alignment for struct foo and to optimise the

Re: systemd, fstab, noauto and nofail

2014-11-23 Thread Noel Torres
On Sunday, 23 de November de 2014 15:09:53 Vincent Danjean escribió: On 20/11/2014 21:44, Simon McVittie wrote: noauto is appropriate for detachable/removable media that are not normally present. The other option for such media is to leave them out of fstab altogether, and use something

Bug#770783: ITP: libtest-perl-critic-progressive-perl -- gradually enforce coding standards

2014-11-23 Thread Robin Sheat
Package: wnpp Severity: wishlist Owner: Robin Sheat ro...@catalyst.net.nz * Package name: libtest-perl-critic-progressive-perl Version : 0.03 Upstream Author : Jeffrey Thalhammer thal...@cpan.org * URL : https://metacpan.org/release/Test-Perl-Critic-Progressive *

Re: New pre-depends: python pre-depends python-minimal

2014-11-23 Thread Wouter Verhelst
On Sun, Nov 23, 2014 at 03:29:29PM -0500, Scott Kitterman wrote: On Sunday, November 23, 2014 13:41:47 Wouter Verhelst wrote: As I understand the situation, that won't solve your problem. If python pre-depends on python-minimal (and the rest of the dependencies stay in place), then you

Re: Bug#752450: ftp.debian.org: please consider to strongly tighten the validity period of Release files

2014-11-23 Thread Chow Loong Jin
On Sat, Nov 22, 2014 at 11:42:41AM +0100, Wouter Verhelst wrote: [...] Before we enable a firewall by default, we should, IMO, have the following: - A way for a user to configure it without understanding iptables. - A way for a user to debug (without understanding iptables) if things

Re: systemd, fstab, noauto and nofail

2014-11-23 Thread Matthias Urlichs
Hi, Noel Torres: Anyway I see that you do not use the noauto option. Is that on purpose? What? It's the very first option. In any case, I can see why three entries for the same mountpoint don't exactly fit systemd's view of the world -- I wouldn't get that idea either, since mount

Accepted coturn 4.3.1.1-1 (source amd64) into unstable

2014-11-23 Thread Oleg Moskalenko
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 23 Nov 2014 00:15:03 -0800 Source: coturn Binary: coturn Architecture: source amd64 Version: 4.3.1.1-1 Distribution: unstable Urgency: low Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org Changed-By:

Accepted partman-base 180 (source) into unstable

2014-11-23 Thread Cyril Brulebois
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 23 Nov 2014 12:38:26 +0100 Source: partman-base Binary: partman-base partman-utils Architecture: source Version: 180 Distribution: unstable Urgency: low Maintainer: Debian Install System Team debian-b...@lists.debian.org

Accepted ghc 7.6.3-20 (source all amd64) into unstable

2014-11-23 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 11:20:59 +0100 Source: ghc Binary: ghc ghc-prof ghc-doc ghc-dynamic ghc-haddock Architecture: source all amd64 Version: 7.6.3-20 Distribution: unstable Urgency: medium Maintainer: Debian Haskell Group

Accepted electrum 1.9.8-3 (source all) into unstable

2014-11-23 Thread Tristan Seligmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 23 Nov 2014 09:59:37 +0200 Source: electrum Binary: python-electrum electrum Architecture: source all Version: 1.9.8-3 Distribution: unstable Urgency: medium Maintainer: Debian Bitcoin Packaging Team

Accepted python-oauthlib 0.7.2-1 (source all) into experimental

2014-11-23 Thread Daniele Tricoli
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sat, 22 Nov 2014 23:29:31 +0100 Source: python-oauthlib Binary: python-oauthlib python3-oauthlib Architecture: source all Version: 0.7.2-1 Distribution: experimental Urgency: medium Maintainer: Debian Python Modules Team

Accepted vlc 2.2.0~rc2-1 (source all) into unstable

2014-11-23 Thread Sebastian Ramacher
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 13:14:07 +0100 Source: vlc Binary: libvlc-dev libvlc5 libvlccore-dev libvlccore8 vlc vlc-data vlc-dbg vlc-nox vlc-plugin-fluidsynth vlc-plugin-jack vlc-plugin-notify vlc-plugin-sdl vlc-plugin-svg vlc-plugin-zvbi

Accepted poco 1.3.6p1-5 (source amd64) into unstable

2014-11-23 Thread Maxime Chatelle
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 18 Nov 2014 11:45:20 +0100 Source: poco Binary: libpoco-dev libpococrypto9-dbg libpococrypto9 libpocodata9-dbg libpocodata9 libpocofoundation9-dbg libpocofoundation9 libpocomysql9-dbg libpocomysql9 libpoconet9-dbg

Accepted cups 1.7.5-8 (source all) into unstable

2014-11-23 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 13:26:24 +0100 Source: cups Binary: libcups2 libcupsimage2 libcupscgi1 libcupsmime1 libcupsppdc1 cups cups-core-drivers cups-daemon cups-client libcups2-dev libcupsimage2-dev libcupscgi1-dev libcupsmime1-dev

Accepted cups-filters 1.0.61-3 (source) into unstable

2014-11-23 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 14:00:47 +0100 Source: cups-filters Binary: libcupsfilters1 libfontembed1 cups-filters cups-filters-core-drivers libcupsfilters-dev libfontembed-dev cups-browsed Architecture: source Version: 1.0.61-3

Accepted ruby-omniauth-oauth2 1.2.0-1 (source all) into experimental

2014-11-23 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 18:44:42 +0530 Source: ruby-omniauth-oauth2 Binary: ruby-omniauth-oauth2 Architecture: source all Version: 1.2.0-1 Distribution: experimental Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted astroid 1.2.1-2 (source all) into unstable

2014-11-23 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 13:36:44 + Source: astroid Binary: python-astroid python3-astroid Architecture: source all Version: 1.2.1-2 Distribution: unstable Urgency: medium Maintainer: Sandro Tosi mo...@debian.org Changed-By: Sandro

Accepted amule 2.3.1+git1a369e47-3 (source amd64 all) into unstable

2014-11-23 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 13:57:01 + Source: amule Binary: amule amule-common amule-utils amule-utils-gui amule-daemon amule-gnome-support plasma-widget-amule amule-dbg Architecture: source amd64 all Version: 2.3.1+git1a369e47-3

Accepted cups-filters 1.0.61-4 (source) into unstable

2014-11-23 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 14:56:37 +0100 Source: cups-filters Binary: libcupsfilters1 libfontembed1 cups-filters cups-filters-core-drivers libcupsfilters-dev libfontembed-dev cups-browsed Architecture: source Version: 1.0.61-4

Accepted enigmail 2:1.7.2-3 (source) into unstable

2014-11-23 Thread Willi Mann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 15:47:07 +0100 Source: enigmail Binary: enigmail Architecture: source Version: 2:1.7.2-3 Distribution: unstable Urgency: medium Maintainer: Debian Mozilla Extension Maintainers

Accepted pyhunspell 0.1-2 (source amd64) into unstable

2014-11-23 Thread Benjamin Drung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 23 Nov 2014 14:52:49 +0100 Source: pyhunspell Binary: python-hunspell python3-hunspell Architecture: source amd64 Version: 0.1-2 Distribution: unstable Urgency: medium Maintainer: Benjamin Drung bdr...@debian.org Changed-By:

Accepted libvirt 1.2.9-5 (source amd64 all) into unstable

2014-11-23 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 14:57:13 +0100 Source: libvirt Binary: libvirt-bin libvirt-clients libvirt-daemon libvirt-daemon-system libvirt0 libvirt0-dbg libvirt-doc libvirt-dev libvirt-sanlock Architecture: source amd64 all Version: 1.2.9-5

Accepted teeworlds 0.6.2+dfsg-2 (source all) into unstable

2014-11-23 Thread Felix Geyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 16:45:28 +0100 Source: teeworlds Binary: teeworlds teeworlds-server teeworlds-data Architecture: source all Version: 0.6.2+dfsg-2 Distribution: unstable Urgency: high Maintainer: Debian Games Team

Accepted collectd 5.4.1-6 (source amd64 all) into unstable

2014-11-23 Thread Sebastian Harl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 23 Nov 2014 15:27:15 +0100 Source: collectd Binary: collectd-core collectd collectd-utils collectd-dbg collectd-dev libcollectdclient-dev libcollectdclient1 Architecture: source amd64 all Version: 5.4.1-6 Distribution: unstable

Accepted drbd-utils 8.9.2~rc1-2 (source amd64) into unstable

2014-11-23 Thread Apollon Oikonomopoulos
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 17:30:02 +0200 Source: drbd-utils Binary: drbd-utils drbd-utils-dbg drbd8-utils Architecture: source amd64 Version: 8.9.2~rc1-2 Distribution: unstable Urgency: medium Maintainer: Debian DRBD Maintainers

Accepted ruby-em-hiredis 0.2.1-2.1 (source all) into unstable

2014-11-23 Thread Margarita Manterola
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 16:21:27 +0100 Source: ruby-em-hiredis Binary: ruby-em-hiredis ruby-em-hiredis-doc Architecture: source all Version: 0.2.1-2.1 Distribution: unstable Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted tig 2.0.3-1 (source amd64) into experimental

2014-11-23 Thread Sebastian Harl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 23 Nov 2014 17:24:40 +0100 Source: tig Binary: tig Architecture: source amd64 Version: 2.0.3-1 Distribution: experimental Urgency: medium Maintainer: Sebastian Harl tok...@debian.org Changed-By: Sebastian Harl tok...@debian.org

Accepted java3d 1.5.2+dfsg-11 (source all amd64) into unstable

2014-11-23 Thread tony mancill
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 23 Nov 2014 09:09:20 -0800 Source: java3d Binary: libjava3d-java libjava3d-jni libjava3d-java-doc Architecture: source all amd64 Version: 1.5.2+dfsg-11 Distribution: unstable Urgency: medium Maintainer: Debian Java Maintainers

Accepted fontconfig 2.11.0-6.3 (source all amd64) into unstable

2014-11-23 Thread Margarita Manterola
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 14:10:23 +0100 Source: fontconfig Binary: fontconfig fontconfig-config fontconfig-udeb libfontconfig1-dev libfontconfig1 libfontconfig1-dbg Architecture: source all amd64 Version: 2.11.0-6.3 Distribution: unstable

Accepted kadu 1.2-2 (source i386 all) into unstable

2014-11-23 Thread Patryk Cisek
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 23 Nov 2014 16:25:21 +0100 Source: kadu Binary: kadu libkadu kadu-common kadu-dev kadu-themes Architecture: source i386 all Version: 1.2-2 Distribution: unstable Urgency: medium Maintainer: Patryk Cisek pat...@debian.org

Accepted nwchem 6.5+r26243-4 (source amd64 all) into unstable

2014-11-23 Thread Michael Banck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 23 Nov 2014 17:35:50 +0100 Source: nwchem Binary: nwchem nwchem-data Architecture: source amd64 all Version: 6.5+r26243-4 Distribution: unstable Urgency: medium Maintainer: Debichem Team debichem-de...@lists.alioth.debian.org

Accepted robocode 1.9.2.4-1 (source all) into experimental

2014-11-23 Thread Markus Koschany
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 23 Nov 2014 18:38:32 +0100 Source: robocode Binary: robocode Architecture: source all Version: 1.9.2.4-1 Distribution: experimental Urgency: medium Maintainer: Debian Java Maintainers

Accepted chicken 4.9.0.1-1 (source amd64) into unstable

2014-11-23 Thread evo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 23 Nov 2014 19:24:20 +0100 Source: chicken Binary: chicken-bin libchicken7 libchicken-dev Architecture: source amd64 Version: 4.9.0.1-1 Distribution: unstable Urgency: high Maintainer: Davide Puricelli (evo) e...@debian.org

Accepted gedit-latex-plugin 3.8.0-2 (source all) into unstable

2014-11-23 Thread Pietro Battiston
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sat, 22 Nov 2014 18:47:12 +0100 Source: gedit-latex-plugin Binary: gedit-latex-plugin Architecture: source all Version: 3.8.0-2 Distribution: unstable Urgency: medium Maintainer: Andrea Gasparini ga...@yattaweb.it Changed-By:

Accepted ruby-oauth2 1.0.0-1 (source all) into experimental

2014-11-23 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 24 Nov 2014 00:44:21 +0530 Source: ruby-oauth2 Binary: ruby-oauth2 Architecture: source all Version: 1.0.0-1 Distribution: experimental Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted ruby-excon 0.38.0-1 (source all) into experimental

2014-11-23 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sat, 22 Nov 2014 13:48:37 +0530 Source: ruby-excon Binary: ruby-excon Architecture: source all Version: 0.38.0-1 Distribution: experimental Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted espeakup 1:0.71-18 (source amd64) into unstable

2014-11-23 Thread Samuel Thibault
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 23 Nov 2014 21:07:37 +0100 Source: espeakup Binary: espeakup espeakup-udeb Architecture: source amd64 Version: 1:0.71-18 Distribution: unstable Urgency: medium Maintainer: Debian Accessibility Team

Accepted lxdm 0.5.0-3 (source amd64) into unstable

2014-11-23 Thread Andriy Grytsenko
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 23 Nov 2014 21:34:36 +0200 Source: lxdm Binary: lxdm lxdm-dbg Architecture: source amd64 Version: 0.5.0-3 Distribution: unstable Urgency: low Maintainer: Debian LXDE Maintainers lxde-deb...@lists.lxde.org Changed-By: Andriy

Accepted ruby-jwt 1.0.0-1 (source all) into experimental

2014-11-23 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 24 Nov 2014 01:23:17 +0530 Source: ruby-jwt Binary: ruby-jwt Architecture: source all Version: 1.0.0-1 Distribution: experimental Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted fftw3 3.3.4-2 (source all armhf) into unstable

2014-11-23 Thread Sébastien Villemot
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 20:49:59 +0100 Source: fftw3 Binary: libfftw3-3 libfftw3-single3 libfftw3-double3 libfftw3-long3 libfftw3-quad3 libfftw3-bin libfftw3-mpi3 libfftw3-dev libfftw3-mpi-dev libfftw3-doc libfftw3-dbg Architecture:

Accepted apt-spacewalk 1.0.6-4.1 (source all) into unstable

2014-11-23 Thread Andreas Bombe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sat, 22 Nov 2014 18:42:41 +0100 Source: apt-spacewalk Binary: apt-transport-spacewalk Architecture: source all Version: 1.0.6-4.1 Distribution: unstable Urgency: medium Maintainer: Bernd Zeimetz b...@debian.org Changed-By: Andreas

Accepted coturn 4.3.1.2-1 (source amd64) into unstable

2014-11-23 Thread Oleg Moskalenko
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 23 Nov 2014 13:38:11 -0800 Source: coturn Binary: coturn Architecture: source amd64 Version: 4.3.1.2-1 Distribution: unstable Urgency: low Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org Changed-By:

Accepted gscan2pdf 1.2.7-1 (source all) into unstable

2014-11-23 Thread Jeffrey Ratcliffe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 23 Nov 2014 16:54:03 +0100 Source: gscan2pdf Binary: gscan2pdf Architecture: source all Version: 1.2.7-1 Distribution: unstable Urgency: low Maintainer: Jeffrey Ratcliffe j...@debian.org Changed-By: Jeffrey Ratcliffe

Accepted python-mpld3 0.3git+20140910dfsg-2 (source all) into unstable

2014-11-23 Thread W. Martin Borgert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 23 Nov 2014 20:46:12 + Source: python-mpld3 Binary: python-mpld3 python3-mpld3 Architecture: source all Version: 0.3git+20140910dfsg-2 Distribution: unstable Urgency: low Maintainer: Debian Python Modules Team

Accepted libmediainfo 0.7.71-1 (source amd64 all) into experimental

2014-11-23 Thread Chow Loong Jin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sat, 22 Nov 2014 17:04:33 +0800 Source: libmediainfo Binary: libmediainfo-dev libmediainfo0 python-mediainfodll python3-mediainfodll libmediainfo-doc Architecture: source amd64 all Version: 0.7.71-1 Distribution: experimental

Accepted remotetea 1.0.7-3 (source all) into unstable

2014-11-23 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 24 Nov 2014 00:38:35 +0100 Source: remotetea Binary: remotetea Architecture: source all Version: 1.0.7-3 Distribution: unstable Urgency: medium Maintainer: Debian Java Maintainers pkg-java-maintain...@lists.alioth.debian.org

Accepted python-gnutls 2.0.1-2 (source i386) into unstable

2014-11-23 Thread Scott Kitterman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 20:34:20 -0500 Source: python-gnutls Binary: python-gnutls Architecture: source i386 Version: 2.0.1-2 Distribution: unstable Urgency: medium Maintainer: Debian Python Modules Team

Accepted mediainfo 0.7.71-1 (source amd64) into experimental

2014-11-23 Thread Chow Loong Jin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 24 Nov 2014 11:00:54 +0800 Source: mediainfo Binary: mediainfo mediainfo-gui Architecture: source amd64 Version: 0.7.71-1 Distribution: experimental Urgency: medium Maintainer: Chow Loong Jin hyper...@debian.org Changed-By: Chow

Accepted pisa 3.0.32-2 (source all) into unstable

2014-11-23 Thread Scott Kitterman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 23 Nov 2014 21:51:06 -0500 Source: pisa Binary: python-pisa Architecture: source all Version: 3.0.32-2 Distribution: unstable Urgency: medium Maintainer: Debian Python Modules Team python-modules-t...@lists.alioth.debian.org