Re: init system policy

2014-11-21 Thread Ansgar Burchardt
Hi, Jonas Smedegaard d...@jones.dk writes: Thanks. Sounds like only a diff between system-provided and sysadmin-overrided config, however: That might help for the latter part of the question - notify only when system service file is overridden locally (by suppressing notification if

Re: Help to review a patch in ELisp

2014-11-21 Thread Matthias Urlichs
Hi, Josh Triplett: + sed -e 's/.* .*/\\/' $LIST_FILE I can't speak for the rest of the patch without digging into quite a bit of the context and assumptions in the elisp, but regarding this bit, rather than checking for spaces and only quoting filenames then, just *always* quote

Re: init system policy

2014-11-21 Thread Alexandre Detiste
There was some discussion about this a while back, and I vaguely remember that systemd comes with a tool that will tell you exactly what you're overriding. I'm not sure if that work got all the way to producing a nice Debian-aware tool or not. Sounds interesting. If anyone recall that

Re: policy regarding redistributable binary files in upstream tarballs

2014-11-21 Thread Matthias Urlichs
Hi, Russell Stuart: Admittedly this meshes well with my experience that they are often fairly lax about what they put in those tarballs. Their make distclean scripts are often not as good as they could be Or they're better, in that a make distclean removes files like *.min.js which a

Re: policy regarding redistributable binary files in upstream tarballs

2014-11-21 Thread Paul Wise
On Fri, Nov 21, 2014 at 5:25 PM, Matthias Urlichs wrote: These days, they might just push their repo to github and let its machinery generate the tarballs, which TTBOMK aren't guaranteed to be 1:1 identical to another tarball of the same commit that's downloaded a week later. Or a year. I

Re: Help to review a patch in ELisp

2014-11-21 Thread Remi Vanicat
Stéphane Aulery saul...@free.fr writes: Hello, I am looking for a person who knows enough to verify a ELisp patch. The patch is supposed to fix a problem of space in file names [1], upstream unfortunately does not have the in-house expertise [2]. Volunteers? The change to elisp only touch

Re: init system policy

2014-11-21 Thread Jonas Smedegaard
Quoting Ansgar Burchardt (2014-11-21 09:59:39) Jonas Smedegaard d...@jones.dk writes: Thanks. Sounds like only a diff between system-provided and sysadmin-overrided config, however: That might help for the latter part of the question - notify only when system service file is overridden

Re: init system policy

2014-11-21 Thread Matthias Urlichs
Hi, Jonas Smedegaard: Sure it would be even better to only get notified on _semantic_ changes rather than line-based ones, but that's a dream, not a regression. Given Python .ini script parser and some directory scanning, an initial program which does this shouldn't be too hard to do. Any

Re: systemd breaking display manager - no way to force?

2014-11-21 Thread Agustin Martin
On Fri, Nov 21, 2014 at 07:28:55AM +0200, Andrei POPESCU wrote: On Vi, 21 nov 14, 09:45:51, Norbert Preining wrote: Hi everyone, so here we are, after the freeze, and systemd stubbornly rejects to start lightdm, my default display manager, and in turn tries to start lxdm, which does

Re: policy regarding redistributable binary files in upstream tarballs

2014-11-21 Thread Russell Stuart
On Fri, 2014-11-21 at 17:39 +0800, Paul Wise wrote: On Fri, Nov 21, 2014 at 5:25 PM, Matthias Urlichs wrote: These days, they might just push their repo to github and let its machinery generate the tarballs, which TTBOMK aren't guaranteed to be 1:1 identical to another tarball of the same

Architectures where unaligned access is (not) OK?

2014-11-21 Thread Simon McVittie
A couple of questions for people who know low-level things: * Of Debian's architectures (official and otherwise), which ones are known/defined/designed to be OK with unaligned accesses from user-space, and which ones (can be configured to) crash or give wrong answers? * Would it be safer

Re: init system policy

2014-11-21 Thread Ian Jackson
Philip Hands writes (Re: init system policy): Would it perhaps make sense to have etckeeper additionally keep track of files in /lib directories for packages that have this /etc overrides /lib scheme? Such packages could add their config-outside-etc directories to a list somewhere, perhaps,

Re: init system policy

2014-11-21 Thread Stephan Seitz
On Thu, Nov 20, 2014 at 09:16:46PM +, Philip Hands wrote: Would it perhaps make sense to have etckeeper additionally keep track of files in /lib directories for packages that have this /etc overrides /lib scheme? Such packages could add their config-outside-etc I don’t think so,

Re: init system policy

2014-11-21 Thread Philip Hands
Ian Jackson ijack...@chiark.greenend.org.uk writes: Philip Hands writes (Re: init system policy): Would it perhaps make sense to have etckeeper additionally keep track of files in /lib directories for packages that have this /etc overrides /lib scheme? Such packages could add their

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

2014-11-21 Thread Thorsten Glaser
On Fri, 21 Nov 2014, Simon McVittie wrote: failing to start up on armel due to unaligned memory accesses. lzo2 has a cpp macro, LZO_CFG_NO_UNALIGNED which can be defined to stop it doing clever things with casting pointers. If the maintainer doesn't object Please define this macro

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

2014-11-21 Thread David Kalnischkies
On Fri, Nov 21, 2014 at 12:42:34PM +, Simon McVittie wrote: A couple of questions for people who know low-level things: * Of Debian's architectures (official and otherwise), which ones are known/defined/designed to be OK with unaligned accesses from user-space, and which ones (can be

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

2014-11-21 Thread Bernhard R. Link
* Simon McVittie s...@debian.org [141121 13:42]: A couple of questions for people who know low-level things: * Of Debian's architectures (official and otherwise), which ones are known/defined/designed to be OK with unaligned accesses from user-space, and which ones (can be configured to)

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

2014-11-21 Thread Rebecca N. Palmer
https://wiki.debian.org/ArchitectureSpecificsMemo -- To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/546f3ec4.5030...@zoho.com

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

2014-11-21 Thread Sam Hartman
I thought there was a flag bit you could set on x86 that causes unaligned access to trap there too. --Sam -- To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive:

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

2014-11-21 Thread Felipe Sateler
On Fri, 21 Nov 2014 12:42:34 +, Simon McVittie wrote: A couple of questions for people who know low-level things: * Of Debian's architectures (official and otherwise), which ones are known/defined/designed to be OK with unaligned accesses from user-space, and which ones (can be

Re: init system policy

2014-11-21 Thread Philip Hands
Stephan Seitz stse+deb...@fsing.rootsland.net writes: On Thu, Nov 20, 2014 at 09:16:46PM +, Philip Hands wrote: Would it perhaps make sense to have etckeeper additionally keep track of files in /lib directories for packages that have this /etc overrides /lib scheme? Such packages could add

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

2014-11-21 Thread Leif Lindholm
On Fri, Nov 21, 2014 at 12:42:34PM +, Simon McVittie wrote: A couple of questions for people who know low-level things: * Of Debian's architectures (official and otherwise), which ones are known/defined/designed to be OK with unaligned accesses from user-space, and which ones (can be

Re: Re: init system policy

2014-11-21 Thread Jonathan de Boyne Pollard
Vincent Bernat: There is chpst for this kind of task. Unfortunately, being part of runit, it may not be suitable for a dependency. * http://superuser.com/a/72 Actually, there are chpst, s6-setuidgid, daemontools-encore setuidgid, daemontools setuidgid, freedt setuidgid, nosh setuidgid,

Bug#770466: ITP: dash-el -- Modern list manipulation library for Emacs

2014-11-21 Thread Hajime MIZUNO
Package: wnpp Severity: wishlist Owner: Hajime Mizuno mizuno...@ubuntu.com X-Debbugs-Cc: debian-devel@lists.debian.org, debian-emac...@lists.debian.org, debian-de...@debian.or.jp * Package name: dash-el Version : 2.9.0 Upstream Author : Magnar Sveen magn...@gmail.com * URL

Re: init system policy

2014-11-21 Thread Simon McVittie
On 21/11/14 14:04, Philip Hands wrote: A quick glance at the manual leads me to try: systemctl disable gdm3 (and ... gdm, and a few other things) -- none of which work. Display managers are unusual here; they're an exception to the usual enabledness stuff. Normally, a service is enabled

Re: Re: init system policy

2014-11-21 Thread Jonathan de Boyne Pollard
Russ Allbery: Yeah, this seems like the right solution to me too. Drop a configuration fragment in /etc/systemd that overrides the user and group and then don't touch it again. I refer you to footnote #85 in that patched document that I just sent to you. (-: -- To UNSUBSCRIBE, email

Re: init system policy

2014-11-21 Thread Eric Valette
On 11/21/2014 03:26 PM, Jonathan de Boyne Pollard wrote: Eric Valette: There has been a good and valuable effort trying to split original upstream packages provided init system scripts by debian developers into /etc/default/X and /etc/init.d/X file and storing most commonly changed sysv init

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

2014-11-21 Thread Wookey
+++ Leif Lindholm [2014-11-21 14:00 +]: On Fri, Nov 21, 2014 at 12:42:34PM +, Simon McVittie wrote: A couple of questions for people who know low-level things: * Of Debian's architectures (official and otherwise), which ones are known/defined/designed to be OK with unaligned

Re: Re: Re: init system policy

2014-11-21 Thread Jonathan de Boyne Pollard
Eric Valette: There has been a good and valuable effort trying to split original upstream packages provided init system scripts by debian developers into /etc/default/X and /etc/init.d/X file and storing most commonly changed sysv init options in the default file part (including start or

Re: Re: init system policy

2014-11-21 Thread Jonathan de Boyne Pollard
Eric Valette: I just mentioned that naively combining User=$TOTO or ${TOTO} TOTO being defined in an default/package file parsed by EnvironmentFile= does not seem to work as documented in man pages (seen the very same question being asked on various distro mailing list without definitive

Bug#770475: ITP: ruby-ice-cube -- ruby date recurrence library

2014-11-21 Thread Balasankar C
Package: wnpp Severity: wishlist Owner: Balasankar C balasank...@autistici.org * Package name: ruby-ice-cube Version : 0.11.1 Upstream Author : John Crepezzi john.crepe...@gmail.com * URL : http://seejohncode.com/ice_cube/ * License : Expat Programming Lang:

Bug#770480: ITP: librasterlite2 -- library for huge raster coverages using a SpatiaLite DBMS

2014-11-21 Thread Bas Couwenberg
Package: wnpp Severity: wishlist Owner: Bas Couwenberg sebas...@xs4all.nl * Package name: librasterlite2 Version : 1.0.0~rc0 Upstream Author : Alessandro Furieri a.furi...@lqt.it * URL : https://www.gaia-gis.it/fossil/librasterlite2/ * License : MPL-1.1 or

Bug#769907: general: non-sysvinit init systems are made of fail

2014-11-21 Thread Michal Suchanek
On 21 November 2014 06:38, Thomas Goirand z...@debian.org wrote: On 11/19/2014 06:14 PM, Michal Suchanek wrote: On 18 November 2014 00:52, Thomas Goirand z...@debian.org wrote: On 11/18/2014 03:50 AM, Michal Suchanek wrote: With current sysvinit the serial console is also used as main but

Re: init system policy

2014-11-21 Thread Ian Jackson
Philip Hands writes (Re: init system policy): Ian Jackson ijack...@chiark.greenend.org.uk writes: I don't know how much etckeeper users use modifying (rather than recording) git operations, but I can imagine that this approach might easily result in etckeeper's git fighting with dpkg.

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

2014-11-21 Thread Jakub Wilk
* Felipe Sateler fsate...@debian.org, 2014-11-21, 14:04: Sparc is definitely not ok. For evidence, see #721617, liblo was trying to fetch a double from a 4-byte aligned address. Experience with liblo shows that other architectures are just fine (or at least are just slower) with this type of

Re: init system policy

2014-11-21 Thread Philip Hands
Simon McVittie s...@debian.org writes: On 21/11/14 14:04, Philip Hands wrote: A quick glance at the manual leads me to try: systemctl disable gdm3 (and ... gdm, and a few other things) -- none of which work. Display managers are unusual here; they're an exception to the usual

Re: init system policy

2014-11-21 Thread Philip Hands
Ian Jackson ijack...@chiark.greenend.org.uk writes: Philip Hands writes (Re: init system policy): Ian Jackson ijack...@chiark.greenend.org.uk writes: I don't know how much etckeeper users use modifying (rather than recording) git operations, but I can imagine that this approach might

Bug#770489: ITP: librewms -- simple WMS 1.3.0 interactive GUI client

2014-11-21 Thread Bas Couwenberg
Package: wnpp Severity: wishlist Owner: Bas Couwenberg sebas...@xs4all.nl * Package name: librewms Version : 1.0.0a Upstream Author : Alessandro Furieri a.furi...@lqt.it * URL : https://www.gaia-gis.it/fossil/librewms/ * License : GPL-3.0+ Programming Lang:

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

2014-11-21 Thread Bastien ROUCARIES
On Fri, Nov 21, 2014 at 6:01 PM, Jakub Wilk jw...@debian.org wrote: * Felipe Sateler fsate...@debian.org, 2014-11-21, 14:04: Sparc is definitely not ok. For evidence, see #721617, liblo was trying to fetch a double from a 4-byte aligned address. Experience with liblo shows that other

Re: init system policy

2014-11-21 Thread Simon McVittie
On 21/11/14 17:07, Philip Hands wrote: Is there any way this isn't going to be an enormous surprise to people that are used to the way that Debian usually treats /etc? I do get your point; editing the (underlying file for the) .service is unnecessary and undesirable for systemd, and if you

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

2014-11-21 Thread Julian Taylor
On 21.11.2014 18:01, Jakub Wilk wrote: * Felipe Sateler fsate...@debian.org, 2014-11-21, 14:04: Sparc is definitely not ok. For evidence, see #721617, liblo was trying to fetch a double from a 4-byte aligned address. Experience with liblo shows that other architectures are just fine (or at

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

2014-11-21 Thread Simon McVittie
On 21/11/14 13:21, Thorsten Glaser wrote: On Fri, 21 Nov 2014, Simon McVittie wrote: failing to start up on armel due to unaligned memory accesses. lzo2 has a cpp macro, LZO_CFG_NO_UNALIGNED which can be defined to stop it doing clever things with casting pointers. Please define this macro

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

2014-11-21 Thread Guillem Jover
On Fri, 2014-11-21 at 18:01:11 +0100, Jakub Wilk wrote: * Felipe Sateler fsate...@debian.org, 2014-11-21, 14:04: Sparc is definitely not ok. For evidence, see #721617, liblo was trying to fetch a double from a 4-byte aligned address. Experience with liblo shows that other architectures are

Re: init system policy

2014-11-21 Thread Matthias Urlichs
Hi, Philip Hands: Is there any way this isn't going to be an enormous surprise to people that are used to the way that Debian usually treats /etc? Well, instead of edit /etc/default/FOO and search for the flag to disable the daemon or the programmatic equivalent of add a bunch of symlinks

Bug#769907: general: non-sysvinit init systems are made of fail

2014-11-21 Thread Thomas Goirand
On 11/22/2014 12:45 AM, Michal Suchanek wrote: Of course. That's what I have and the Jessie bootlogd does not give messages on both consoles. Or was this bit of openstack support not pushed to jessie? Thanks Michal This is unrelated to OpenStack. And yes, I did work on the issue and

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

2014-11-21 Thread Henrique de Moraes Holschuh
On Fri, 21 Nov 2014, Sam Hartman wrote: I thought there was a flag bit you could set on x86 that causes unaligned access to trap there too. 1. CR0.AM must be set. 2. Ask For The Pain! i386: __asm__(pushf\norl $0x4,(%esp)\npopf); x86-64: __asm__(pushf\norl $0x4,(%rsp)\npopf);

Re: Pre-Depends: init-system-helpers

2014-11-21 Thread Bob Proulx
Tollef Fog Heen wrote: Russ Allbery wrote: Bob Proulx writes: Maybe I am missing a better alternative? update-rc.d service disable No. That is too late. By the time you are disabling something it has already been installed and started in postinst scripts. Using

Bug#770509: ITP: uci2wb -- XBoard protocol adapter for chess/shogi/xianqi engines speaking USI/UCCI/UCI-XQ

2014-11-21 Thread Yann Dirson
Package: wnpp Severity: wishlist Owner: Yann Dirson dir...@debian.org * Package name: uci2wb Version : 2.0 Upstream Author : H.G. Muller h.g.mul...@hccnet.nl * URL : http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=uci2wb.git;a=summary * License : GPL Programming

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

2014-11-21 Thread Kurt Roeckx
On Fri, Nov 21, 2014 at 12:42:34PM +, Simon McVittie wrote: A couple of questions for people who know low-level things: * Of Debian's architectures (official and otherwise), which ones are known/defined/designed to be OK with unaligned accesses from user-space, and which ones (can be

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

2014-11-21 Thread Vincent Bernat
❦ 21 novembre 2014 17:34 -0200, Henrique de Moraes Holschuh h...@debian.org : I thought there was a flag bit you could set on x86 that causes unaligned access to trap there too. 1. CR0.AM must be set. 2. Ask For The Pain! i386: __asm__(pushf\norl $0x4,(%esp)\npopf); x86-64:

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

2014-11-21 Thread Henrique de Moraes Holschuh
On Fri, 21 Nov 2014, Vincent Bernat wrote: ❦ 21 novembre 2014 17:34 -0200, Henrique de Moraes Holschuh h...@debian.org : I thought there was a flag bit you could set on x86 that causes unaligned access to trap there too. 1. CR0.AM must be set. 2. Ask For The Pain! i386:

Re: systemd, fstab, noauto and nofail

2014-11-21 Thread Noel Torres
On Thursday, 20 de November de 2014 20:44:17 Simon McVittie escribió: On 20/11/14 19:06, Noel Torres wrote: On Thursday, 20 de November de 2014 17:53:27 Marco d'Itri escribió: On Nov 20, Sam Hartman hartm...@debian.org wrote: The first issue (fstab now fatally blocks boot) is something the

Re: Technical committee acting in gross violation of the Debian constitution

2014-11-21 Thread Troy Benjegerdes
On Mon, Nov 17, 2014 at 09:45:19PM +0100, Josselin Mouette wrote: Le lundi 17 novembre 2014 à 21:20 +0100, Josselin Mouette a écrit : It’s not because the resolution is wrong, either. Of course, my opinion is that it is wrong, and that it is going to rain fire on us when upgraded systems do

Re: systemd, fstab, noauto and nofail

2014-11-21 Thread Russ Allbery
Noel Torres env...@rolamasao.org writes: Many thanks I do not understand, then, how this is different from what sysvinit's mountall.sh does (or at least what I understand it does). As I understand it, sysvinit didn't care whether mountall.sh succeeded or failed. So even if a bunch of

Re: systemd breaking display manager - no way to force?

2014-11-21 Thread Norbert Preining
Hi Andrei, - purge lxdm (remove might do it as well, but just for good measure) - reconfigure lightdm (to make sure display-manager.service symlink points to lightdm.service) Yes, indeed, there is a bug in the service file shipped by lxdm which breaks all other dms. Removing and hand

Re: systemd, fstab, noauto and nofail

2014-11-21 Thread Paul Wise
On Sat, Nov 22, 2014 at 8:46 AM, Noel Torres wrote: I do not understand, then, how this is different from what sysvinit's mountall.sh does (or at least what I understand it does). The difference is that it appears to ignore the exit code of mount calls, meaning it acts as if everything in

Re: systemd breaking display manager - no way to force?

2014-11-21 Thread Matthias Klumpp
2014-11-22 2:53 GMT+01:00 Norbert Preining prein...@logic.at: Hi Andrei, - purge lxdm (remove might do it as well, but just for good measure) - reconfigure lightdm (to make sure display-manager.service symlink points to lightdm.service) Yes, indeed, there is a bug in the service file

Bug#770531: ITP: ruby-sidetiq -- recurring jobs for Sidekiq

2014-11-21 Thread Balasankar C
Package: wnpp Severity: wishlist Owner: Balasankar C balasank...@autistici.org * Package name: ruby-sidetiq Version : 0.6.3 Upstream Author : Tobias Svensson t...@tobiassvensson.co.uk * URL : https://github.com/tobiassvn/sidetiq * License : BSD-3-clause

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

2014-11-21 Thread Wouter Verhelst
On Mon, Nov 17, 2014 at 06:24:00PM -0500, Scott Kitterman wrote: 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 configured, python is unpacked, but

Accepted direwolf 1.0-2 (source amd64 all) into unstable

2014-11-21 Thread Iain R. Learmonth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 07 Nov 2014 13:40:27 + Source: direwolf Binary: direwolf direwolf-docs Architecture: source amd64 all Version: 1.0-2 Distribution: unstable Urgency: medium Maintainer: Russell Stuart russell-deb...@stuart.id.au Changed-By:

Accepted icedtea-web 1.5.2~rc1-1 (source amd64 all) into unstable

2014-11-21 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 21 Nov 2014 08:45:27 +0100 Source: icedtea-web Binary: icedtea-netx icedtea-plugin icedtea-netx-common icedtea-7-plugin Architecture: source amd64 all Version: 1.5.2~rc1-1 Distribution: unstable Urgency: medium Maintainer:

Accepted libmodule-corelist-perl 5.20141120-1 (source all) into unstable

2014-11-21 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 21 Nov 2014 09:22:16 +0100 Source: libmodule-corelist-perl Binary: libmodule-corelist-perl Architecture: source all Version: 5.20141120-1 Distribution: unstable Urgency: medium Maintainer: Debian Perl Group

Accepted ruby-rack-mobile-detect 0.4.0-3 (source all) into unstable

2014-11-21 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 13:57:38 +0530 Source: ruby-rack-mobile-detect Binary: ruby-rack-mobile-detect Architecture: source all Version: 0.4.0-3 Distribution: unstable Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted ruby-i18n-inflector 2.6.6-2 (source all) into unstable

2014-11-21 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 13:20:58 +0530 Source: ruby-i18n-inflector Binary: ruby-i18n-inflector Architecture: source all Version: 2.6.6-2 Distribution: unstable Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted ruby-unf 0.1.0-1 (source all) into experimental

2014-11-21 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 13:35:05 +0530 Source: ruby-unf Binary: ruby-unf Architecture: source all Version: 0.1.0-1 Distribution: experimental Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted neutron 2014.1.3-6 (source all) into unstable

2014-11-21 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 16:25:18 +0800 Source: neutron Binary: python-neutron neutron-server neutron-common neutron-plugin-nec-agent neutron-l3-agent neutron-dhcp-agent neutron-metadata-agent neutron-metering-agent neutron-vpn-agent

Accepted cpl 6.5.1-1~exp1 (source amd64 all) into experimental

2014-11-21 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 20 Nov 2014 17:33:34 +0100 Source: cpl Binary: libcpl-dev libcpl-doc libcplcore20 libcpldfs20 libcpldrs20 libcplui20 libcext0 libcext-dev libcext-doc libcplgasgano20 Architecture: source amd64 all Version: 6.5.1-1~exp1

Accepted oslo.messaging 1.4.0.0+really+1.3.1-2 (source all) into unstable

2014-11-21 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 09:50:49 + Source: oslo.messaging Binary: python-oslo.messaging Architecture: source all Version: 1.4.0.0+really+1.3.1-2 Distribution: unstable Urgency: medium Maintainer: PKG OpenStack

Accepted oslo.messaging 1.4.1-2 (source all) into experimental

2014-11-21 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 10:01:03 + Source: oslo.messaging Binary: python-oslo.messaging Architecture: source all Version: 1.4.1-2 Distribution: experimental Urgency: medium Maintainer: PKG OpenStack

Accepted neutron 2014.2-4 (source all) into experimental

2014-11-21 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 16:39:03 +0800 Source: neutron Binary: python-neutron neutron-server neutron-common neutron-plugin-nec-agent neutron-l3-agent neutron-dhcp-agent neutron-metadata-agent neutron-metering-agent neutron-vpn-agent

Accepted stress-ng 0.02.29-1 (source amd64) into unstable

2014-11-21 Thread Colin King
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 10:19:00 + Source: stress-ng Binary: stress-ng Architecture: source amd64 Version: 0.02.29-1 Distribution: unstable Urgency: medium Maintainer: Colin King colin.k...@canonical.com Changed-By: Colin King

Accepted gnustep-back 0.24.0-4 (source all amd64) into unstable

2014-11-21 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Wed, 19 Nov 2014 08:11:48 +0200 Source: gnustep-back Binary: gnustep-back0.24 gnustep-back0.24-art gnustep-back0.24-cairo gnustep-back-common gnustep-back-dbg Architecture: source all amd64 Version: 0.24.0-4 Distribution: unstable

Accepted neutron 2014.1.3-7 (source all) into unstable

2014-11-21 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 10:37:07 + Source: neutron Binary: python-neutron neutron-server neutron-common neutron-plugin-nec-agent neutron-l3-agent neutron-dhcp-agent neutron-metadata-agent neutron-metering-agent neutron-vpn-agent

Accepted ruby-redis-namespace 1.4.1-2 (source all) into unstable

2014-11-21 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 18:19:19 +0530 Source: ruby-redis-namespace Binary: ruby-redis-namespace Architecture: source all Version: 1.4.1-2 Distribution: unstable Urgency: medium Maintainer: Debian Ruby Extras Maintainers

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

2014-11-21 Thread Alexander Wirt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 21 Nov 2014 13:48:18 +0100 Source: icinga2 Binary: icinga2 icinga2-common icinga2-bin icinga2-doc icinga2-classicui icinga2-ido-mysql icinga2-ido-pgsql icinga2-dbg Architecture: source amd64 all Version: 2.2.0-1 Distribution:

Accepted activemq 5.6.0+dfsg1-3 (source all) into unstable

2014-11-21 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 21 Nov 2014 14:02:16 +0100 Source: activemq Binary: libactivemq-java libactivemq-java-doc activemq Architecture: source all Version: 5.6.0+dfsg1-3 Distribution: unstable Urgency: high Maintainer: Debian Java Maintainers

Accepted burp 1.3.48-4.1 (source amd64) into unstable

2014-11-21 Thread Jean-Michel Nirgal Vourgère
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sat, 15 Nov 2014 20:17:29 + Source: burp Binary: burp burp-dbg Architecture: source amd64 Version: 1.3.48-4.1 Distribution: unstable Urgency: low Maintainer: Bastiaan Franciscus van den Dikkenberg b...@dikkenberg.net

Accepted libnetfilter-log 1.0.1-1.1 (source amd64) into unstable

2014-11-21 Thread Jean-Michel Nirgal Vourgère
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 16 Nov 2014 11:03:35 + Source: libnetfilter-log Binary: libnetfilter-log1 libnetfilter-log1-dbg libnetfilter-log-dev Architecture: source amd64 Version: 1.0.1-1.1 Distribution: unstable Urgency: medium Maintainer:

Accepted ruby-rack-pjax 0.7.0-2 (source all) into unstable

2014-11-21 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 19:07:01 +0530 Source: ruby-rack-pjax Binary: ruby-rack-pjax Architecture: source all Version: 0.7.0-2 Distribution: unstable Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted rrdtool 1.4.8-1.2 (source amd64 all) into unstable

2014-11-21 Thread Jean-Michel Nirgal Vourgère
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 16 Nov 2014 02:11:49 + Source: rrdtool Binary: rrdtool rrdcached rrdtool-dbg librrd4 librrd-dev librrds-perl librrdp-perl rrdtool-tcl python-rrdtool ruby-rrd librrd-ruby librrd-ruby1.8 librrd-ruby1.9.1 liblua5.1-rrd0

Accepted ruby-ethon 0.7.1-1 (source all) into experimental

2014-11-21 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 19:43:51 +0530 Source: ruby-ethon Binary: ruby-ethon Architecture: source all Version: 0.7.1-1 Distribution: experimental Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted molly-guard 0.5.1-1 (source all) into unstable

2014-11-21 Thread Josh Triplett
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 07 Nov 2014 03:42:41 -0800 Source: molly-guard Binary: molly-guard Architecture: source all Version: 0.5.1-1 Distribution: unstable Urgency: low Maintainer: martin f. krafft madd...@debian.org Changed-By: Josh Triplett

Accepted shortuuid 0.4.2-1.1 (source all) into unstable

2014-11-21 Thread Cyril Brulebois
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 14 Nov 2014 13:32:16 + Source: shortuuid Binary: python-shortuuid python3-shortuuid Architecture: source all Version: 0.4.2-1.1 Distribution: unstable Urgency: medium Maintainer: Kouhei Maeda mkou...@palmtb.net Changed-By:

Accepted ruby-fog 1.24.0-2 (source all) into experimental

2014-11-21 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 20:26:52 +0530 Source: ruby-fog Binary: ruby-fog Architecture: source all Version: 1.24.0-2 Distribution: experimental Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted digikam 4:4.4.0-1.1 (source amd64 all) into unstable

2014-11-21 Thread Jean-Michel Nirgal Vourgère
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sat, 15 Nov 2014 12:15:00 + Source: digikam Binary: digikam-private-libs digikam showfoto digikam-data digikam-doc kipi-plugins kipi-plugins-common Architecture: source amd64 all Version: 4:4.4.0-1.1 Distribution: unstable

Accepted lightdm-gtk-greeter 1.8.5-2 (source amd64) into unstable

2014-11-21 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 21 Nov 2014 18:03:40 +0100 Source: lightdm-gtk-greeter Binary: lightdm-gtk-greeter Architecture: source amd64 Version: 1.8.5-2 Distribution: unstable Urgency: medium Maintainer: Debian Xfce Maintainers

Accepted discosnp 1.2.6-1 (source amd64) into unstable

2014-11-21 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 17:56:37 +0100 Source: discosnp Binary: discosnp Architecture: source amd64 Version: 1.2.6-1 Distribution: unstable Urgency: medium Maintainer: Debian Med Packaging Team

Accepted gnutls28 3.3.8-5 (source i386 all) into unstable

2014-11-21 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Thu, 20 Nov 2014 19:25:20 +0100 Source: gnutls28 Binary: libgnutls28-dev libgnutls-deb0-28 libgnutls28-dbg gnutls-bin gnutls-doc guile-gnutls libgnutlsxx28 libgnutls-openssl27 Architecture: source i386 all Version: 3.3.8-5

Accepted krb5 1.12.1+dfsg-15 (source all amd64) into unstable

2014-11-21 Thread Benjamin Kaduk
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 21 Nov 2014 12:36:08 -0500 Source: krb5 Binary: krb5-user krb5-kdc krb5-kdc-ldap krb5-admin-server krb5-multidev libkrb5-dev libkrb5-dbg krb5-pkinit krb5-otp krb5-doc libkrb5-3 libgssapi-krb5-2 libgssrpc4 libkadm5srv-mit9

Accepted watchdog 5.14-2 (source amd64) into unstable

2014-11-21 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 04 Nov 2014 16:30:54 +0100 Source: watchdog Binary: watchdog Architecture: source amd64 Version: 5.14-2 Distribution: unstable Urgency: medium Maintainer: Michael Meskes mes...@debian.org Changed-By: Michael Meskes

Accepted cross-gcc-4.9-powerpc 2 (source amd64) into unstable

2014-11-21 Thread wookey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Wed, 19 Oct 2014 17:02:12 + Source: cross-gcc-4.9-powerpc Binary: cpp-4.9-powerpc-linux-gnu gcc-4.9-powerpc-linux-gnu g++-4.9-powerpc-linux-gnu gfortran-4.9-powerpc-linux-gnu Architecture: source amd64 Version: 2 Distribution:

Accepted cross-gcc-4.9-mips 2 (source amd64) into unstable

2014-11-21 Thread wookey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Wed, 19 Oct 2014 17:02:12 + Source: cross-gcc-4.9-mips Binary: cpp-4.9-mips-linux-gnu gcc-4.9-mips-linux-gnu g++-4.9-mips-linux-gnu gfortran-4.9-mips-linux-gnu Architecture: source amd64 Version: 2 Distribution: unstable

Accepted cross-gcc-4.9-mipsel 2 (source amd64) into unstable

2014-11-21 Thread wookey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Wed, 19 Oct 2014 17:02:12 + Source: cross-gcc-4.9-mipsel Binary: cpp-4.9-mipsel-linux-gnu gcc-4.9-mipsel-linux-gnu g++-4.9-mipsel-linux-gnu gfortran-4.9-mipsel-linux-gnu Architecture: source amd64 Version: 2 Distribution:

Accepted nvidia-cuda-toolkit 6.0.37-5 (all amd64 i386 source) into unstable

2014-11-21 Thread Andreas Beckmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 18:53:52 +0100 Source: nvidia-cuda-toolkit Binary: nvidia-cuda-toolkit nvidia-cuda-doc nvidia-cuda-gdb nvidia-profiler nvidia-visual-profiler nvidia-nsight nvidia-cuda-dev nvidia-opencl-dev libcudart6.0

Accepted drupal7 7.32-1+deb8u1 (source all) into unstable

2014-11-21 Thread Gunnar Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Wed, 15 Oct 2014 12:45:29 -0500 Source: drupal7 Binary: drupal7 Architecture: source all Version: 7.32-1+deb8u1 Distribution: unstable Urgency: high Maintainer: Luigi Gangitano lu...@debian.org Changed-By: Gunnar Wolf

Accepted ruby-sass-rails 4.0.4-1 (source all) into experimental

2014-11-21 Thread Pirate Praveen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sat, 22 Nov 2014 01:12:03 +0530 Source: ruby-sass-rails Binary: ruby-sass-rails Architecture: source all Version: 4.0.4-1 Distribution: experimental Urgency: medium Maintainer: Debian Ruby Extras Maintainers

Accepted cross-gcc-defaults 0.4 (source all) into unstable

2014-11-21 Thread Wookey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 04 Nov 2014 05:19:04 + Source: cross-gcc-defaults Binary: cpp-aarch64-linux-gnu gcc-aarch64-linux-gnu g++-aarch64-linux-gnu gfortran-aarch64-linux-gnu cpp-arm-linux-gnueabi gcc-arm-linux-gnueabi g++-arm-linux-gnueabi

Accepted nautilus 3.14.1-2 (source all amd64) into unstable

2014-11-21 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 20:44:25 +0100 Source: nautilus Binary: nautilus nautilus-dbg libnautilus-extension1a libnautilus-extension-dev gir1.2-nautilus-3.0 nautilus-data Architecture: source all amd64 Version: 3.14.1-2 Distribution:

Accepted python-regex 0.1.20141024-2 (source amd64) into unstable

2014-11-21 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 21 Nov 2014 23:53:10 + Source: python-regex Binary: python-regex python-regex-dbg python3-regex python3-regex-dbg Architecture: source amd64 Version: 0.1.20141024-2 Distribution: unstable Urgency: medium Maintainer: Sandro

Accepted readahead-fedora 2:1.5.6-5.2 (source) into unstable

2014-11-21 Thread Guillem Jover
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 20 Nov 2014 00:10:05 +0100 Source: readahead-fedora Binary: readahead-fedora Architecture: source Version: 2:1.5.6-5.2 Distribution: unstable Urgency: low Maintainer: Raphael Geissert geiss...@debian.org Changed-By: Guillem

  1   2   >