Bug#676616: Patch

2012-08-30 Thread Theppitak Karoonboonyanan
On Sun, Aug 12, 2012 at 9:06 PM, Theppitak Karoonboonyanan
t...@linux.thai.net wrote:
 On Sun, Aug 12, 2012 at 12:46 AM, Theppitak Karoonboonyanan
 t...@linux.thai.net wrote:
 On Sat, Aug 11, 2012 at 9:56 PM, Theppitak Karoonboonyanan
 t...@linux.thai.net wrote:
 So, if it's to be forwarded upstream, it would be for gnome-3-4 branch only.

 Upstream bug filed:

   https://bugzilla.gnome.org/show_bug.cgi?id=681659

 Update: Patch has been applied upstream.

Since there seems to be no further release on GNOME 3.4 branch,
should we pull the patch for Wheezy?

Regards,
-- 
Theppitak Karoonboonyanan
http://linux.thai.net/~thep/


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



Bug#684736: melange: diff for NMU version 1:2012.1-2.1

2012-08-30 Thread Ola Lundqvist
Hi

This makes sense. But I think we should use (= {source:Version})
and not (= ${source:Version}).

But that is not as important as adding the dependency in the first place.

I can see that Thomas is already working on this so my reply is not
that important. :-)

// Ola

On Mon, Aug 27, 2012 at 07:05:36AM +0200, Salvatore Bonaccorso wrote:
 Hi Ola
 
 On Sun, Aug 26, 2012 at 08:12:28PM +0200, Ola Lundqvist wrote:
  Thanks for this mail. Sorry for not actually attaching the diff.
  It is now attached.
  
  As you can see I did not put any (= ${source:Version}) as I do not
  see any reason why it should be there. It just makes life harder
  for apt and dpkg when resolving stuff. :-)
  
  Or do you know of any specific reason why it should be there?
 
 The only reason I added it was, the scripts provided in melange are
 from the same source package as python-melange, and that they might at
 least require the version from the same source package to run
 correctly.
 
 See also the reply from Thomas Goirand in [1].
 
  [1]: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684736#20
 
 Best regards,
 Salvatore



-- 
 --- Inguza Technology AB --- MSc in Information Technology 
/  o...@inguza.comAnnebergsslingan 37\
|  o...@debian.org   654 65 KARLSTAD|
|  http://inguza.com/Mobile: +46 (0)70-332 1551 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9  /
 ---


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



Bug#678066: Proposal to simplify PowerPC CD/DVD boot options

2012-08-30 Thread Milan Kupcevic
On 08/29/2012 07:58 PM, Rick Thomas wrote:
 
 On Aug 29, 2012, at 4:25 PM, Rick Thomas wrote:
 

 I just tried booting a PowerMac G4 with the Wheezy installer image
 built on 20120826-03:23 (details of where I downloaded it from, etc
 available on request).

 The G4 is a 32-bit machine, but it seems to be offering me the choices
 for a 64 bit machine.

 Before the boot: prompt it said (among other things)
install 64-bit processor (G5 or POWER3/4/5/6/7)
install32   32-bit processor (G4 or earlier)

 and when I entered tab at the boot: prompt I saw the list of options
install   expert  rescue
auto  install32   expert32
rescue32  auto32


At this point you can still type: install32

 If I just hit ret at the boot: prompt it looks like it's trying to
 boot the 64-bit kernel, which (of course) fails on the G4.

 The only unusual thing about this is that I'm booting from a USB stick
 using Open Firmware, rather than from a physical CD-ROM.  Should that
 make any difference?

When you load yaboot binary directly from Open Firmware you are skipping
blessed stage one boot loader script. That is making the difference.

 
 I just tried booting that installer from a physical CD-ROM on the G4.  I
 got the expected (32-bit) messages.
 
 So, I guess booting from a CD sets something in the OF environment that
 isn't being set when booting from a USB stick?
 

By default, PowerPC Macs boot from a CD/DVD drive by loading an Apple
specific blessed file located in an Apple_HFS partition. The blessed
file is a stage one boot loader. It is a file containing Open Firmware
commands that are figuring out whether they run on 32-bit or 64-bit
machine, followed by a boot command that loads yaboot binary while
passing appropriate arguments to it.

If yaboot binary gets loaded without arguments it will offer both 64-bit
and 32-bit options, but default to 64-bit.

 
 Is there a fix for this, or is it an un-common enough use-case to just
 need to be documented as a limitation.
 

The on-screen instructions are correct. Thus, the manual could just say
something like this: When the machine boots, follow the on screen
instruction.


Milan


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



Bug#686153: [PATCH] int10: fix pci_device_read_rom usage

2012-08-30 Thread Dave Airlie
On Thu, Aug 30, 2012 at 4:03 AM, Julien Cristau jcris...@debian.org wrote:
 From: Stephan Schreiber i...@fs-driver.org

 I noticed that the build-in int10 driver always reports
 Unable to retrieve all of segment 0x0C.
 even though the entire BIOS data is retrieved with success.

 The associated code is in hw/xfree86/int10/generic.c, in the function
 xf86ExtendedInitInt10():

 if (pci_device_read_rom(pInt-dev, vbiosMem)  V_BIOS_SIZE) {
 xf86DrvMsg(screen, X_WARNING,
Unable to retrieve all of segment 0x0C.\n);
 }

 The function pci_device_read_rom() is from libpciaccess; its return
 value is not a size but an error status code: 0 means success.
 If pci_device_read_rom() returns 0 for success, the warning is generated.

 The proposed patch corrects the evaluation of the return value of
 pci_device_read_rom() and of the supplied BIOS size.

 Debian bug#686153

 Signed-off-by: Julien Cristau jcris...@debian.org

Reviewed-by: Dave Airlie airl...@redhat.com
 ---
  hw/xfree86/int10/generic.c |3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)

 diff --git a/hw/xfree86/int10/generic.c b/hw/xfree86/int10/generic.c
 index 4633120..d7594de 100644
 --- a/hw/xfree86/int10/generic.c
 +++ b/hw/xfree86/int10/generic.c
 @@ -178,7 +178,8 @@ xf86ExtendedInitInt10(int entityIndex, int Flags)
   */
  vbiosMem = (char *) base + V_BIOS;
  memset(vbiosMem, 0, 2 * V_BIOS_SIZE);
 -if (pci_device_read_rom(pInt-dev, vbiosMem)  V_BIOS_SIZE) {
 +if (pci_device_read_rom(pInt-dev, vbiosMem) != 0
 +|| pInt-dev-rom_size  V_BIOS_SIZE) {
  xf86DrvMsg(pScrn-scrnIndex, X_WARNING,
 Unable to retrieve all of segment 0x0C.\n);
  }
 --
 1.7.10.4

 ___
 xorg-de...@lists.x.org: X.Org development
 Archives: http://lists.x.org/archives/xorg-devel
 Info: http://lists.x.org/mailman/listinfo/xorg-devel


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



Bug#686211: Please allow translation of all debconf templates

2012-08-30 Thread Ben Hutchings
On Wed, 2012-08-29 at 16:42 -0400, David Prévot wrote:
 Package: linux-base
 Version: 3.5
 Severity: serious
 Tags: patch
 Justification: Policy 3.9.1
 
 Hi,
 
 A small typo in one of the templates (missing prepending underscore)
 prevent one screen to be translated. It would be pointless to fix this
 without a proper call for translation, so I'm proposing to take care of
 it on your behalf, starting in two days (or sooner if you ACK this
 proposal).
 
 d-l10n-english is xCC, in case they believe a proper review would worth
 it (but I doubt it given the “These templates have been reviewed by the
 debian-l10n-english team” header already present in those files).

I added this error message after that initial review (in linux-2.6
version 2.6.32-16 vs 2.6.32-13).  I don't know why I didn't properly
mark it as translatable.

Ben.

-- 
Ben Hutchings
Quantity is no substitute for quality, but it's the only one we've got.


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


Bug#686222: O: ted -- lightweight .DOC editor

2012-08-30 Thread Ztatik Light
Subject: ITP: ted -- lightweight .DOC editor
Package: wnpp
Version: 2.22; reported 2012-01-04
Severity: wishlist

* Package name : ted
Version : 2.22
Upstream Author : Mark de Does m...@mdedoes.xs4all.nl
* URL : http://nllgg.nl/Ted/
* License : GPL
Description : lightweight .DOC editor

This was included in previous versions of Debian, but removed, *I believe*,
for the reason that it was thought to be unmaintained... The current
version has now switched to using GTK+ and was released five months ago. (
previous version is over seven years )

The only valid .DOC editors in Debian are LibreOffice and AbiWord, which
are both somewhat bloated (especially LibreOffice, as it's in Java) ... I
believe Ted is a nice lightweight alternative.


Bug#686223: /etc/cron.d/foo lines are silently truncated

2012-08-30 Thread Karl O. Pinc
Package: cron
Version: 3.0pl1-116
Severity: normal

Hi,

Lines in crontabs in /etc/cron.d/ are silently truncated before
command execution.

Having a line length limit is not in itself a bad thing, but
the program should complain when the limit is exceeded instead
of silently truncating.  As it is, sometimes you get
an error and sometimes you don't.  (And you have no clues
to tell you what's wrong.)

(Sorry, I didn't test other sorts of crontabs to see
if they have the same problem.)

Example:

A like like:

13 1 * * * root /bin/echo one two three four five six seven eight nine ten 
eleven twelve thirteen fourteen fifteen sixteen seventeen eightteen nineteen 
twenty twentyone twentytwo twentythree twentyfour twentyfive twentysix 
twentyseven twentyeight twentynine thirty thirtyone thirtytwo thirtythree 
thirtyfour thirtyfive thirtysix thirtyseven thirtyeight thirtynine fourty 
fourtyone fourtytwo fourtythree fourtyfour fourtyfive fourtysix fourtyseven 
fourtyeight fourtynine fifty fiftyone fiftytwo fiftythree fiftyfour fiftyfive 
fiftysix fiftyseven fiftyeight fiftynine sixty sixtyone sixtytwo sixtythree 
sixtyfour sixtyfive sixtysix sixtyseven sixtyeight sixtynine seventy seventyone 
seventytwo seventythree seventyfour seventyfive seventysix seventyseven 
seventyeight seventynine eighty eightyone eightytwo eightythree eightyfour 
eightyfive eightysix eightyseven eightyeight eightynine ninety ninetyone 
ninetytwo ninetythree ninetyfour ninetyfive ninetysix ninetyseven ninetyeight 
ninetynine 
 onehundred onehundredone onehundredtwo onehundredthree onehundredfour 
onehundredfive onehundredsix onehundredseven onehundredeight onehundrednine 
onehundredeleven onehundredtwelve onehundredthirteen onehundredfourteen 
onehundredfifteen onehundredsixteen onehundredseventeen onehundredeightteen 
onehundrednineteen onehundredtwenty onehundredtwentyone onehundredtwentytwo 
onehundredtwentythree onehundredtwentyfour onehundredtwentyfive 
onehundredtwentysix onehundredtwentyseven onehundredtwentyeight 
onehundredtwentynine onehundredthirty onehundredthirtyone onehundredthirtytwo 
onehundredthirtythree onehundredthirtyfour onehundredthirtyfive 
onehundredthirtysix onehundredthirtyseven onehundredthirtyeight 
onehundredthirtynine


Produces an email with only:

one two three four five six seven eight nine ten eleven twelve thirteen
fourteen fifteen sixteen seventeen eightteen nineteen twenty twentyone
twentytwo twentythree twentyfour twentyfive twentysix twentyseven twentyeight
twentynine thirty thirtyone thirtytwo thirtythree thirtyfour thirtyfive
thirtysix thirtyseven thirtyeight thirtynine fourty fourtyone fourtytwo
fourtythree fourtyfour fourtyfive fourtysix fourtyseven fourtyeight fourtynine
fifty fiftyone fiftytwo fiftythree fiftyfour fiftyfive fiftysix fiftyseven
fiftyeight fiftynine sixty sixtyone sixtytwo sixtythree sixtyfour sixtyfive
sixtysix sixtyseven sixtyeight sixtynine seventy seventyone seventytwo
seventythree seventyfour seventyfive seventysix seventyseven seventyeight
seventynine eighty eightyone eightytwo eightythree eightyfour eightyfive
eightysix eightyseven eightyeight eightynine ninety ninetyone ninetytwo
ninetythree ninetyfour ninetyfive ninetysix ninetyseven ninetyeight ninetynine
onehundred onehundredone


-- Package-specific info:
--- EDITOR:

--- usr/bin/editor:
/bin/nano

--- /usr/bin/crontab:
-rwxr-sr-x 1 root crontab 30248 Dec 18  2010 /usr/bin/crontab

--- /var/spool/cron
drwxr-xr-x 5 root root 4096 Mar  8  2005 /var/spool/cron

--- /var/spool/cron/crontabs
drwx-wx--T 2 root crontab 4096 Jul 25 21:10 /var/spool/cron/crontabs


-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages cron depends on:
ii  adduser   3.112+nmu2 add and remove users and groups
ii  debianutils   3.4Miscellaneous utilities specific t
ii  dpkg  1.15.8.12  Debian package management system
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libpam-runtime1.1.1-6.1+squeeze1 Runtime support for the PAM librar
ii  libpam0g  1.1.1-6.1+squeeze1 Pluggable Authentication Modules l
ii  libselinux1   2.0.96-1   SELinux runtime shared libraries
ii  lsb-base  3.2-23.2squeeze1   Linux Standard Base 3.2 init scrip

Versions of packages cron recommends:
ii  lockfile-progs  0.1.15   Programs for locking and unlocking
ii  postfix [mail-transport 2.7.1-1+squeeze1 High-performance mail transport ag

Versions of packages cron suggests:
ii  anacron   2.3-14 cron-like program that doesn't go 
pn  checksecurity none (no description available)
ii  logrotate 3.7.8-6Log rotation 

Bug#686224: Typo in manpage rsyslog.conf(5) module imuxsock

2012-08-30 Thread Gang Chen
Package: rsyslog
Version: 4.6.4-2
Severity: minor


Quote from man page:
  imuxsock
Unix sockets, ...
$ModLoad imudp


Should it be:
$ModLoad imuxsock


-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages rsyslog depends on:
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages rsyslog recommends:
ii  logrotate 3.7.8-6Log rotation utility

Versions of packages rsyslog suggests:
pn  rsyslog-doc   none (no description available)
pn  rsyslog-gnutlsnone (no description available)
pn  rsyslog-gssapinone (no description available)
pn  rsyslog-mysql | rsyslog-pgsql none (no description available)
pn  rsyslog-relp  none (no description available)

-- no debconf information


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



Bug#686225: wireshark: CVE-2012-3548

2012-08-30 Thread Moritz Muehlenhoff
Package: wireshark
Severity: normal
Tags: security
Justification: user security hole

This was assigned CVE-2012-3548:

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7666
https://bugzilla.redhat.com/show_bug.cgi?id=849926

Cheers,
Moritz


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



Bug#665334: [Pkg-fonts-devel] Bug#665334: proposed plan to resolve fontforge non-dfsg-freeness

2012-08-30 Thread Fabian Greffrath

Am 29.08.2012 22:05, schrieb Daniel Kahn Gillmor:

   2) made the UI for type1 export default to requesting an
OtherSubrsFile, and had it look in a standard place in the filesystem


How about scripted export to Type1 format?

 - Fabian


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



Bug#678066: Proposal to simplify PowerPC CD/DVD boot options

2012-08-30 Thread Rick Thomas


On Aug 29, 2012, at 11:04 PM, Milan Kupcevic wrote:


On 08/29/2012 07:58 PM, Rick Thomas wrote:


On Aug 29, 2012, at 4:25 PM, Rick Thomas wrote:



I just tried booting a PowerMac G4 with the Wheezy installer image
built on 20120826-03:23 (details of where I downloaded it from,  
etc

available on request).

The G4 is a 32-bit machine, but it seems to be offering me the  
choices

for a 64 bit machine.

Before the boot: prompt it said (among other things)
  install 64-bit processor (G5 or POWER3/4/5/6/7)
  install32   32-bit processor (G4 or earlier)

and when I entered tab at the boot: prompt I saw the list of  
options

  install   expert  rescue
  auto  install32   expert32
  rescue32  auto32



At this point you can still type: install32

If I just hit ret at the boot: prompt it looks like it's  
trying to

boot the 64-bit kernel, which (of course) fails on the G4.

The only unusual thing about this is that I'm booting from a USB  
stick
using Open Firmware, rather than from a physical CD-ROM.  Should  
that

make any difference?


When you load yaboot binary directly from Open Firmware you are  
skipping

blessed stage one boot loader script. That is making the difference.



I just tried booting that installer from a physical CD-ROM on the  
G4.  I

got the expected (32-bit) messages.

So, I guess booting from a CD sets something in the OF environment  
that

isn't being set when booting from a USB stick?



By default, PowerPC Macs boot from a CD/DVD drive by loading an Apple
specific blessed file located in an Apple_HFS partition. The blessed
file is a stage one boot loader. It is a file containing Open Firmware
commands that are figuring out whether they run on 32-bit or 64-bit
machine, followed by a boot command that loads yaboot binary while
passing appropriate arguments to it.

If yaboot binary gets loaded without arguments it will offer both 64- 
bit

and 32-bit options, but default to 64-bit.



Is there a fix for this, or is it an un-common enough use-case to  
just

need to be documented as a limitation.



The on-screen instructions are correct. Thus, the manual could just  
say

something like this: When the machine boots, follow the on screen
instruction.

Milan


Thanks for the explanation.  It helps me understand what's going on  
here.


What you say is, of course, technically correct.  The problem I'm  
having is that this is an about-face change from previous practice.   
Previously, 32-bit was the default, and 64-bit was the specific  
option.  Now it's the reverse.


Has there been a sea-change?  Are G5 machines now more common than  
G4s?  If so it could justify a reversal of long established behavior.   
But, while I have no statistics to quote, I doubt it based on the  
comments I've read in the lists. Actually, I think the large majority  
of old Apple machines people are trying to use with Debian are G4s.



Regardless, I'm trying to write a comprehensive set of notes on  
booting Apple PowerMacs from USB drives, and it would be nice to have  
this part fully documented.


Is there something I can tell people to do at the OF prompt that will  
load and run the stage-one boot loader?


If it's not possible to run the stage-one boot loader, is there  
something I can tell them to do that will pass the appropriate  
arguments to yaboot to make it do the right thing for their machine?



Thanks!

Rick

PS: I think the work you're doing on this is a big step in the right  
direction.  I'm a fan of the PowerPC architecture, and I'm just trying  
to help make the experience of Debian on old Macs as good as we know  
it can be!



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



Bug#686218: cdimage.debian.org: booting powerpc netinst installer from USB-stick complains about type (Apple_HFS) of bootstrap partition (wants Apple_bootstrap)

2012-08-30 Thread Milan Kupcevic
On 08/29/2012 08:48 PM, Rick Thomas wrote:
 
 When booting the Debian netinst powerpc installer from a USB flash disk you 
 may see a mesage
 WARNING: Bootstrap partition type is wrong: Apple_HFS
   type should be: Apple_Bootstrap 
 
 This does not occur when booting the same iso from a physical CD-ROM.
 
 Ignoring the warning does not seem to cause any problems.
 
 Any idea what makes it do that?  Can if be fixed?  Should it be documented if 
 it can't be fixed?
 

The warning message is likely coming from Open Firmware. It seems that
it expects to find a properly partitioned hard drive connected to the
USB connector you are trying to boot from. It does not expect to find a
hybrid CD/DVD Apple_HFS partition there.

M


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



Bug#686222: O: ted -- lightweight .DOC editor

2012-08-30 Thread Neil Williams
On Thu, 30 Aug 2012 01:28:39 -0500
Ztatik Light ztatik.li...@gmail.com wrote:

 Subject: ITP: ted -- lightweight .DOC editor

There is also another package requesting the name ted - #605503. The
package should be renamed to something more unique.

Your message didn't successfully change the title of the bug - please
see bugs.debian.org for details on how to do that *if* it is your
intention to do all the Debian packaging work for this package.

 Package: wnpp
 Version: 2.22; reported 2012-01-04
 Severity: wishlist
 
 * Package name : ted
 Version : 2.22
 Upstream Author : Mark de Does m...@mdedoes.xs4all.nl
 * URL : http://nllgg.nl/Ted/
 * License : GPL
 Description : lightweight .DOC editor
 
 This was included in previous versions of Debian, but removed, *I believe*,
 for the reason that it was thought to be unmaintained...

http://packages.qa.debian.org/t/ted.html

#502776 gives the reasons for removal. The previous maintainer requested 
removal.

 Please remove ted:
 
  * Unmaintained upstream.
 
  * DSFG problems - the upstream maintainer has added additional restrictions
on top of the GPL which are extremely unlikely to be resolved. The full
details are in #501638. This bug is lenny RC.
 
  * GTK frontend missing due to inability to build.

The problems described in #501638 would mean that the package would not
be allowed back into Debian unless fixed.

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgpk6DnWdfJCo.pgp
Description: PGP signature


Bug#685530: clarification

2012-08-30 Thread Daniel Pocock



Just to clarify, your problem report concerns placing /boot on btrfs
RAID and not the issue of mounting root?

I can successfully boot with

/ on btrfs RAID1
/boot on ext4

but obviously it would be nice to have everything on btrfs eventually.

I've described my own experience of using D-I to install onto BtrFS
RAID1 here:

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


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



Bug#685721: dblatex: Non-alphabetix indexterm entries show up under strange heading

2012-08-30 Thread Petter Reinholdtsen
[Petter Reinholdtsen]
 indexterm entries starting with a number show up in the index
 under a rather strange _ heading.  Can this be changed to be more
 like the docbook-xsl apprach, where the same entry show up under and
 'Symbols' heading in the index?

I discovered that the problem also occur for alphabetic entries when
the first letter is one of the non-ASCII norwegian letters.  The entry
'åndsverkloven' is sorted along the numeric entry.  See example
docbook file with UTF-8 encoding attached.

The same problem do not occur with docbook-xsl, which incorrectly sort
å alongside a in the index. :(

-- 
Happy hacking
Petter Reinholdtsen
!DOCTYPE book PUBLIC -//OASIS//DTD DocBook V4.5//EN
http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd;
!--

Demonstrate problem with non-alphabetic indexterm entries in dblatex.

The '60 Minutes' entry is placed under an _ heading, which is rather
strange.  docbook-xsl places it under an 'Symbols' heading, which is
strange too, but a bit better looking than the dblatex approach.

 --
book lang=nb
  bookinfo
titleExample demonstrating index problem/title
  /bookinfo
preface
indextermprimaryA index entry/primary/indexterm
indextermprimary60 Minutes/primary/indexterm
indextermprimaryåndsverksloven/primary/indexterm
  paratext is good/para
/preface
index/index
/book


Bug#686218: cdimage.debian.org: booting powerpc netinst installer from USB-stick complains about type (Apple_HFS) of bootstrap partition (wants Apple_bootstrap)

2012-08-30 Thread Rick Thomas


On Aug 29, 2012, at 11:30 PM, Milan Kupcevic wrote:


On 08/29/2012 08:48 PM, Rick Thomas wrote:


When booting the Debian netinst powerpc installer from a USB flash  
disk you may see a mesage

   WARNING: Bootstrap partition type is wrong: Apple_HFS
 type should be: Apple_Bootstrap

This does not occur when booting the same iso from a physical CD-ROM.

Ignoring the warning does not seem to cause any problems.

Any idea what makes it do that?  Can if be fixed?  Should it be  
documented if it can't be fixed?




The warning message is likely coming from Open Firmware. It seems that
it expects to find a properly partitioned hard drive connected to the
USB connector you are trying to boot from. It does not expect to  
find a

hybrid CD/DVD Apple_HFS partition there.

M


Is there a way to prepare the USB stick so it will look like what the  
OF is expecting?  Since it doesn't seem to do any harm, I suppose it's  
just a cosmetic bug, but it would be nice if it didn't complain.


Enjoy!
Rick


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



Bug#686214: tpu: package mediawiki-extensions/2.6+wheezy1

2012-08-30 Thread Jonathan Wiltshire

On 2012-08-29 23:43, Adam D. Barratt wrote:

Control: tags -1 + confirmed

On Wed, 2012-08-29 at 23:29 +0100, Jonathan Wiltshire wrote:
An RC bug causing a crash in various Mediawiki extensions was 
reported. A fix
must go through tpu, at least for now, because the version in sid is 
not
acceptable for a freeze exception. Please review the attached patch 
and approve

the fixes before I upload.


Please go ahead; thanks.


Uploading now.


--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51


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



Bug#686222: libreoffice is not much bloated with Java...

2012-08-30 Thread Dmitry Smirnov
Hi,

Just to notice that libreoffice is not as much in Java as it is in CPP nowadays.
Only some non-critical extra functionality is still requires Java.
However libreoffice preload JRE by default - you might be
pleasantly surprised how much faster libreoffice works with Java disabled by 
unticking Use a Java runtime environment in 

  Tools -- Options -- Java

See

https://www.libreoffice.org/get-help/faq/general-faq/does-libreoffice-require-java/

Cheers,
Dmitry.


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



Bug#653113: ITP: reviewboard -- web-based code review tool

2012-08-30 Thread Holger Levsen
Hi Dmitry,

On Mittwoch, 29. August 2012, Dmitry Nezhevenko wrote:
 Sorry for very slow response. Currently I'm mostly busy with some other
 things.. I'll return to this in a few weeks.
[...]
 That's why my current plan is to package ReviewBoard to experimental only
 with some notes about these issues

ah, that explains pretty well, thanks!


Good luck with your other things! :-)

cheers,
Holger


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



Bug#663081: ldm: login always in fallback mode gnome3

2012-08-30 Thread Ivan Mincik
I think it is still there with ldm 2:2.2.11-2.



-- 
Ivan Mincik ivan.min...@gmail.com


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


Bug#685270: doesn't mount ext4 persistence file

2012-08-30 Thread Ed Dixon
Resolved thanks to chals suggestion that
a properly formatted live-persistence.conf file be included file on the
root of the persistence image file system which is documented in man
live-persistence.conf.


Bug#685174: mirror submission for debianmirror.nkn.in

2012-08-30 Thread s.gopinath
1. Updated stpsync version.

2. Removed extra archs

3. Sugessted config for apache is there.

4. I do ftpsync once in a day.

5. We have Multi Gigabit connectivity.

I will try to add more storage and servers at the
earliest.

Thanks,
S.Gopinath


On 28/08/12, Simon Paillard  wrote:
 tag 685174 +moreinfo
 thanks
 
 On Fri, Aug 17, 2012 at 04:55:34PM +, S.Gopinath wrote:
  Package: mirrors
  Severity: wishlist
  
  Submission-Type: new
 
 Thanks for mirroring Debian.
 
  Site: debianmirror.nkn.in
 
 Could you please upgrade your ftpsync version ?
 Your mirror runs 80387, while the last version is 20120521.
 http://www.debian.org/mirror/ftpmirror#how
 
 Please apply http://www.debian.org/mirror/ftpmirror#settings to your http 
 daemon.
 
  Type: leaf
  Archive-architecture: amd64 
 
 http://debianmirror.nkn.in/debian/dists/unstable/
 You happen to mirror more than amd64: +armhf +386 +s390.
 Please tell us if you want to keep these extra archs, or remove them from your
 mirror.
 
  Archive-http: /debian/
  IPv6: no
  Archive-upstream: ftp.us.debian.org
 
 Did you read http://www.debian.org/mirror/ftpmirror.en.html#wherefrom ?
 Please select a mirror from ftp[1-6].us.debian.org.
 
  Updates: lessoften
 
 Daily frequency is the minimum today, could you please configure the cronjob
 accordingly ?
 
  Maintainer: S.Gopinath s.gopin...@nic.in
  Country: IN India
  Location: Chennai,INDIA
  Sponsor: National Knowledge Network http://www.nkn.in
  Comment: Its a start. We plan to put all images.
 
 How much bandwidth is available ?
 
 Thanks for mirroring Debian and best regards.
 
 -- 
 Simon Paillard


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



Bug#686218: cdimage.debian.org: booting powerpc netinst installer from USB-stick complains about type (Apple_HFS) of bootstrap partition (wants Apple_bootstrap)

2012-08-30 Thread Thomas Schmitt
Hi,

Rick Thomas wrote:
 When booting the Debian netinst powerpc installer from a USB flash disk you
 may see a mesage
WARNING: Bootstrap partition type is wrong: Apple_HFS
  type should be: Apple_Bootstrap 
 [...]
 Any idea what makes it do that?  Can if be fixed? 

Apple_HFS is the partition type of the first payload partition
entry in the Apple Partition Map. Written by genisoimage at
byte offset 1072 of the ISO image.

The field has a size of 32 bytes. So you could overwrite it by
other texts in order to check whether they cause less complaints.

My knowledge about APM stems from

http://opensource.apple.com/source/IOStorageFamily/IOStorageFamily-116/IOApplePartitionScheme.h
 (typedef struct Block0)
http://www.informit.com/articles/article.aspx?p=376123seqNum=3
and is summarized in

http://bazaar.launchpad.net/~libburnia-team/libisofs/scdbackup/view/head:/doc/boot_sectors.txt
in chapter Apple Partition Map


(Any further knowledge about HFS w/o + is welcome. I am still
 interested in exploring the HFS aspects of Debian powerpc images.
 I am subscribed to debian...@lists.debian.org but not to
 debian-bugs-dist@lists.debian.org)


Have a nice day :)

Thomas


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



Bug#682601: scim-anthy: my scim-anthy setup is also broken

2012-08-30 Thread Hans Liao
Package: scim-anthy
Version: 1.2.7-5
Followup-For: Bug #682601

Dear Maintainer,

The same thing is happening to me as well, though I only found out in this
version.



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (500, 'stable-updates'), (500, 'unstable'), 
(500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages scim-anthy depends on:
ii  anthy   9100h-16
ii  libanthy0   9100h-16
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-35
ii  libcairo-gobject2   1.12.2-2
ii  libcairo2   1.12.2-2
ii  libgcc1 1:4.7.1-2
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.32.3-1
ii  libgtk-3-0  3.4.2-3
ii  libpango1.0-0   1.30.0-1
ii  libscim8c2a 1.4.13-5
ii  libstdc++6  4.7.1-2
ii  scim1.4.13-5

Versions of packages scim-anthy recommends:
ii  kasumi  2.5-2

scim-anthy suggests no packages.

-- no debconf information


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



Bug#686226: [FATAL] Wheezy Debian installer fails on Qosmio hardware

2012-08-30 Thread Alexey Eromenko
Package: debian-installer
Version: 20120712
Severity: serious

Hi,

I'm trying to install Debian from Wheezy DVD (BETA1) on amd64. (Qosmio
X300-130 laptop).

Actual Result:
It fails during the Detect network hardware phase. Ie. stops
progressing, and no way to skip this stage.

and in console (F4) it complains about the lack of iwl Intel Wireless
firmware and missing eth1394 (Firewire Ethernet).

Expected Result:
Should proceed without problematic firmware or drivers.
Debian 6.0 works great on this same hardware. (installed from amd64 DVD)

-- 
-Alexey Eromenko Technologov


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



Bug#686227: samba4: crash on kpasswd

2012-08-30 Thread Thomas Mueller

Package: samba4
Version: 4.0.0~beta2+dfsg1-3
Severity: normal

I'm testing the samba4 as domain controller.

As soon as i try to change a password with the kpasswd utility, samba4 
crashes somehow - at least the kerberos part.


Loglines from /var/log/samba4/log.samba:

[2012/08/30 10:17:14,  0] ../source4/smbd/server.c:366(binary_smbd_main)
  samba version 4.0.0beta2 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2012
[2012/08/30 10:17:15,  0] ../source4/smbd/server.c:461(binary_smbd_main)
  samba: using 'standard' process model
[2012/08/30 10:18:07,  0] ../lib/util/fault.c:72(fault_report)
  ===
[2012/08/30 10:18:07,  0] ../lib/util/fault.c:73(fault_report)
  INTERNAL ERROR: Signal 11 in pid 26407 (4.0.0beta2)
  Please read the Trouble-Shooting section of the Samba HOWTO
[2012/08/30 10:18:07,  0] ../lib/util/fault.c:75(fault_report)
  ===
[2012/08/30 10:18:07,  0] ../lib/util/fault.c:144(smb_panic_default)
  PANIC: internal error


After this error, the kerberos authentication doesn't work anymore:

# kinit testuser
kinit: Cannot contact any KDC for realm 'TEST.DOMAIN' while getting 
initial credentials


(This was working before the kpasswd invocation.)

- Thomas


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages samba4 depends on:
ii  debconf [debconf-2.0]  1.5.46
ii  libasn1-8-heimdal  1.6~git20120403+dfsg1-2
ii  libattr1   1:2.4.46-8
ii  libbsd00.4.2-1
ii  libc6  2.13-35
ii  libcomerr2 1.42.5-1
ii  libdcerpc-server0  4.0.0~beta2+dfsg1-1
ii  libdcerpc0 4.0.0~beta2+dfsg1-1
ii  libgensec0 4.0.0~beta2+dfsg1-1
ii  libhdb9-heimdal1.6~git20120403+dfsg1-2
ii  libkdc2-heimdal1.6~git20120403+dfsg1-2
ii  libkrb5-26-heimdal 1.6~git20120403+dfsg1-2
ii  libldb11:1.1.6-1
ii  libndr-standard0   4.0.0~beta2+dfsg1-1
ii  libndr04.0.0~beta2+dfsg1-1
ii  libpopt0   1.16-7
ii  libpython2.7   2.7.3~rc2-2.1
ii  libroken18-heimdal 1.6~git20120403+dfsg1-2
ii  libsamba-credentials0  4.0.0~beta2+dfsg1-1
ii  libsamba-hostconfig0   4.0.0~beta2+dfsg1-1
ii  libsamba-util0 4.0.0~beta2+dfsg1-1
ii  libsamdb0  4.0.0~beta2+dfsg1-1
ii  libsmbclient-raw0  4.0.0~beta2+dfsg1-1
ii  libtalloc2 2.0.7+git20120207-1
ii  libtdb11.2.10-2
ii  libtevent0 0.9.16-1
ii  python 2.7.3~rc2-1
ii  python-dnspython   1.10.0-1
ii  python-samba   4.0.0~beta2+dfsg1-3
ii  samba-dsdb-modules 4.0.0~beta2+dfsg1-1
ii  samba4-common-bin  4.0.0~beta2+dfsg1-3
ii  tdb-tools  1.2.10-2
Versions of packages samba4 recommends:
ii  attr1:2.4.46-8
ii  bind9   1:9.8.1.dfsg.P1-4.2
ii  bind9utils  1:9.8.1.dfsg.P1-4.2
ii  ldb-tools   1:1.1.6-1

Versions of packages samba4 suggests:
ii  phpldapadmin  1.2.2-5
pn  samba-gtk none
pn  swat2 none

-- debconf information excluded


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



Bug#666775: failing beanstalkd tests (was: Beanstalkd 1.5 .deb package)

2012-08-30 Thread Serafeim Zanikolas
[adding back bug report in CC]

On Wed, Aug 29, 2012 at 02:31:47PM -0700, Keith Rarick wrote:
 On Wed, Aug 29, 2012 at 6:09 AM, Serafeim Zanikolas s...@debian.org wrote:
  I'm happy to keep 1.4 if you as upstream commit to support it for serious 
  bug
  and security issues for another 3+ years.
 
 I'm happy to support 1.4 for serious bug and security issues for 3+ years.
 
  As an aside, I'm not actually using beanstalkd (the reason I've packaged it 
  is
  not there any more) but I'm OK doing the packaging given a responsive
  upstream.
 
 Ok, understood. I'll try to make life easier on you in the future.
 Thanks for all your work packaging beanstalkd so far and for
 as long as you want to continue. :)

Thank you too Keith. We keep 1.4 then.

Going back to the subject of the bug report, please let me know when you have
a potential fix for the failing tests, and I'll test it on whatever arches you
don't have access to.

-- 
Every great idea is worthless without someone to do the work. --Neil Williams


signature.asc
Description: Digital signature


Bug#676216: gedit should depend on gnome-icon-theme-symbolic

2012-08-30 Thread Michael Stummvoll
Severity 676216 important
tags 676216 +patch
kthxbye

Dear Maintainers,

I made the patch for myself now, may this can help.

Hopefully you find the time to apply it for the next release of the
package. 

Kind Regards,
Michael--- debian/control.in.orig	2012-08-30 10:25:28.300951280 +0200
+++ debian/control.in	2012-08-30 10:26:54.935495469 +0200
@@ -43,6 +43,7 @@
  ${gir:Depends},
  gedit-common (= ${gnome:Version}),
  gedit-common ( ${gnome:NextVersion}),
+ gnome-icon-theme-symbolic, 
  gsettings-desktop-schemas,
  python-gi (= 3.0),
  python-gi-cairo (= 3.0),


Bug#686190: [Pkg-mediawiki-devel] Bug#686190: mediawiki-extensions-base: Fatal error: Call to undefined method Xml::hidden()

2012-08-30 Thread Thorsten Glaser
On Wed, 29 Aug 2012, Anye Li wrote:

 When I migrated from squeeze to wheezy, my mediawiki wiki stopped

Can you please upgrade to mediawiki-extensions-base from
experimental? If that works for you, I’ll upload it to sid.

bye,
//mirabilos
-- 
tarent solutions GmbH
Rochusstraße 2-4, D-53123 Bonn • http://www.tarent.de/
Tel: +49 228 54881-393 • Fax: +49 228 54881-314
HRB 5168 (AG Bonn) • USt-ID (VAT): DE122264941
Geschäftsführer: Boris Esser, Sebastian Mancke


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



Bug#626027: xGnokii quits

2012-08-30 Thread XperimenterX
Package: gnokii
Version: 0.6.29.dfsg-1
Severity: normal

This is because the gnokii config file is not present in the path
/home/username/.config/gnokii

Sol:
Please create a config file (plain-text) in the path with the connection
parameters of your phone

eg config

[global]
# This is default phone config section
port = 1A:5A:91:52:13:B6
model = series40
connection = bluetooth

for more help on config please lookup gnokii documentation



-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-0.bpo.2-486
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnokii depends on:
ii  gnokii-cli 0.6.29.dfsg-1 Datasuite for mobile phone managem
ii  gnokii-common  0.6.29.dfsg-1 Datasuite for mobile phone managem
ii  xgnokii0.6.29.dfsg-1 Datasuite for mobile phone managem

gnokii recommends no packages.

gnokii suggests no packages.

-- no debconf information


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



Bug#686172: (EE) intel(0): failed to get plane resources: Invalid argument

2012-08-30 Thread Lucas

On 08/29/2012 09:46 PM, Julien Cristau wrote:

On Wed, Aug 29, 2012 at 13:35:33 +0400, Lucas wrote:


Package: xserver-xorg
Version: 1:7.7+1
Severity: important


This bug report is empty.  Please describe the issue.

Cheers,
Julien



Sorry about it, I know how to use redhat bugzilla, but not this one.

The problem actually is that I noticed flicker of the screen picture. I remembered, that the same 
was in Fedora until they moved to 3.4 kernel. And/Or they did something else to fix it, but now I 
use Fedora 16 kernel 3.4.2-1.fc16.x86_64, X.Org X Server 1.11.4 Release Date: 2012-01-27, 
intel_drv.so module version = 2.19.0 - there is no any kind of screen flicker.

Mostly it is noticed then screen is white. It starts to hurt eyes.

I tried 3.4 kernel from packages.siduction.org - it did not solve flicker 
problem.

So I start to look through different logs, and found in /var/log/Xorg.0.log:

[  6221.304] (EE) intel(0): failed to get plane resources: Invalid argument
[  6221.304] (EE) intel(0): failed to get plane resources: Invalid argument

I am not sure that it can be connected to screen flicker, but it is an errors 
anyway.

Thanks in advance.



The original message:


Package: xserver-xorg
Version: 1:7.7+1
Severity: important

-- Package-specific info:
X server symlink status:

lrwxrwxrwx. 1 root root 13 May 28 23:35 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 2044664 Jul 18 12:16 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
00:02.0 VGA compatible controller [0300]: Intel Corporation 2nd Generation Core Processor Family 
Integrated Graphics Controller [8086:0102] (rev 09)


/etc/X11/xorg.conf does not exist.

Contents of /etc/X11/xorg.conf.d:
-
total 8
-rw-r--r-- 1 root root 1980 Aug 29 14:03 10-monitor.conf
-rw-r--r-- 1 root root  170 Jul  1  2011 99-mouse-midbutton.conf

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  options i915 modeset=1
/etc/modprobe.d/radeon-kms.conf:
  options radeon modeset=1

Kernel version (/proc/version):
---
Linux version 3.2.0-3-amd64 (Debian 3.2.23-1) (debian-ker...@lists.debian.org) (gcc version 4.6.3 
(Debian 4.6.3-8) ) #1 SMP Mon Jul 23 02:45:17 UTC 2012


Xorg X server log files on system:
--
-rw-r--r-- 1 root root 31253 Aug 29 14:03 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[  6221.273]
X.Org X Server 1.12.3
Release Date: 2012-07-09
[  6221.278] X Protocol Version 11, Revision 0
[  6221.279] Build Operating System: Linux 3.2.0-3-amd64 x86_64 Debian
[  6221.280] Current Operating System: Linux debian7 3.2.0-3-amd64 #1 SMP Mon Jul 23 02:45:17 UTC 
2012 x86_64
[  6221.280] Kernel command line: BOOT_IMAGE=/vmlinuz-3.2.0-3-amd64 root=/dev/mapper/deb7-root ro 
i915.powersave=1 i915.i915_enable_fbc=1 enable_mtrr_cleanup mtrr_spare_reg_nr=1

[  6221.284] Build Date: 18 July 2012  08:00:38AM
[  6221.285] xorg-server 2:1.12.3-1 (Julien Cristau jcris...@debian.org)
[  6221.287] Current version of pixman: 0.26.0
[  6221.289] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[  6221.289] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  6221.294] (==) Log file: /var/log/Xorg.0.log, Time: Wed Aug 29 14:00:50 
2012
[  6221.296] (==) Using config directory: /etc/X11/xorg.conf.d
[  6221.297] (==) Using system config directory /usr/share/X11/xorg.conf.d
[  6221.297] (==) No Layout section.  Using the first Screen section.
[  6221.297] (**) |--Screen Screen0 (0)
[  6221.297] (**) |   |--Monitor HDMI1
[  6221.297] (**) |   |--Device I915GM
[  6221.297] (**) Option StandbyTime 5
[  6221.297] (**) Option SuspendTime 5
[  6221.297] (**) Option OffTime 5
[  6221.297] (==) Automatically adding devices
[  6221.297] (==) Automatically enabling devices
[  6221.297] (WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
[  6221.297] Entry deleted from font path.
[  6221.297] (WW) The directory 
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType does not exist.
[  6221.297] Entry deleted from font path.
[  6221.297] (==) 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
[  6221.297] (==) ModulePath set to /usr/lib/xorg/modules
[  6221.298] (II) The server relies on udev to provide the list of input 
devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[  6221.298] (II) Loader magic: 0x7fbe694deae0
[  6221.298] (II) Module ABI versions:
[  

Bug#686228: wordpress: plugin dirs cannot be symlinked due to plugin_basename bug

2012-08-30 Thread Oskar Liljeblad
Package: wordpress
Version: 3.4.1+dfsg-1
Severity: normal

With the current Debian WordPress directory layout with
/usr/share/wordpress/wp-content and /var/lib/wordpress/wp-content
(and perhaps /var/www/yoursite/wp-content) it is
basically implied that you should symlink plugin directories.
Now most plugins use plugin_basename(__FILE__) to determine their basename.
It is assumed that this function returns a relative directory, but it doesn't
if the plugin is not physically located in WP_PLUGIN_DIR (or WPMU_PLUGIN_DIR).
(With physically located I mean located according to realpath (without
symlinks) - the plugin may still be reachable through WP_PLUGIN_DIR.)

This patch fixes the problem but it is crude. I can imagine that there is a
better fix.  Perhaps plugins should not use __FILE__ to refer to their
location, but it seems most do.

Regards,

Oskar Liljeblad (os...@osk.mine.nu)

--- /usr/share/wordpress/wp-includes/plugin.php.v0  2012-08-30 
07:53:17.170461007 +
+++ /usr/share/wordpress/wp-includes/plugin.php 2012-08-30 08:10:05.126459994 
+
@@ -565,6 +565,11 @@
$mu_plugin_dir = str_replace('\\','/',WPMU_PLUGIN_DIR); // sanitize for 
Win32 installs
$mu_plugin_dir = preg_replace('|/+|','/', $mu_plugin_dir); // remove 
any duplicate slash
$file = preg_replace('#^' . preg_quote($plugin_dir, '#') . '/|^' . 
preg_quote($mu_plugin_dir, '#') . '/#','',$file); // get relative path from 
plugins dir
+   # Begin Oskar Liljeblad os...@vergic.com 2012-08-30
+   $sys_plugin_dir1 = '/usr/share/wordpress/wp-content/plugins';
+   $sys_plugin_dir2 = '/var/lib/wordpress/wp-content/plugins';
+   $file = preg_replace('#^' . preg_quote($sys_plugin_dir1, '#') . '/|^' . 
preg_quote($sys_plugin_dir2, '#') . '/#','',$file); // get relative path from 
plugins dir
+   # End Oskar Liljeblad os...@vergic.com 2012-08-30
$file = trim($file, '/');
return $file;
 }



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


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



Bug#605489: pylint: DeprecationWarning: imap exists in itertools since py2.3 (etc.)

2012-08-30 Thread Sandro Tosi
Hello Jakub,
are you still able to replicate this issue? I can't.

Regards,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi


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



Bug#679721: `midori http://ppt.cc/sR5T` displays XML instead of HTML

2012-08-30 Thread Paul Menzel
forwarded 679721 https://bugs.launchpad.net/midori/+bug/1043698
retitle 679721 `midori http://ppt.cc/sR5T` displays XML instead of HTML
found 679721 0.4.6
quit


Am Sonntag, den 01.07.2012, 09:13 +0800 schrieb jida...@jidanni.org:
 Package: midori
 Version: 0.4.3-1
 
 $ midori http://ppt.cc/sR5T #just gets XML
 $ firefox http://ppt.cc/sR5T #works fine

I am able to reproduce that with self-built Midori 0.4.6-531-gb78c0fd.

Additionally GtkLauncher and Epiphany 3.4.2 work correct too, so there
is a bug in Midori.

Furthermore I reported a bug to the upstream Launchpad bug tracker as
#1043698 [1].


Thanks,

Paul


[1] https://bugs.launchpad.net/midori/+bug/1043698


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


Bug#685581: inn: CVE-2012-3523 prone to STARTTLS plaintext command injection

2012-08-30 Thread Marco d'Itri
On Aug 29, Julien ÉLIE jul...@trigofacile.com wrote:

 Or does it mean that a security release should be made for previous
 versions still maintained by the Debian project?
It should be, yes. (At least, if you think that it should be fixed.)

 And... as for inn 1.7.2, I think it does not support STARTTLS,
 right? (I have not checked.)
Yes.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#605489: pylint: DeprecationWarning: imap exists in itertools since py2.3 (etc.)

2012-08-30 Thread Jakub Wilk

* Sandro Tosi mo...@debian.org, 2012-08-30, 10:54:

are you still able to replicate this issue? I can't.


No, I can't.

--
Jakub Wilk


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



Bug#686230: unblock: libmtp/1.1.3-35-g0ece104-3

2012-08-30 Thread Alessio Treglia
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libmtp 1.1.3-35-g0ece104-3, it contains a minimalistic
patch to fix bug#683637:

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

The debdiff is attached.
Thanks in advance for any reply, and cheers!

unblock libmtp/1.1.3-35-g0ece104-3

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru libmtp-1.1.3-35-g0ece104/debian/changelog libmtp-1.1.3-35-g0ece104/debian/changelog
--- libmtp-1.1.3-35-g0ece104/debian/changelog	2012-07-18 11:04:42.0 +0200
+++ libmtp-1.1.3-35-g0ece104/debian/changelog	2012-08-30 00:33:30.0 +0200
@@ -1,3 +1,10 @@
+libmtp (1.1.3-35-g0ece104-3) unstable; urgency=low
+
+  * Add Sony Tablet P1 support. (Closes: #683637)
+Thanks to Hideki Yamane for the patch.
+
+ -- Alessio Treglia ales...@debian.org  Thu, 30 Aug 2012 00:32:57 +0200
+
 libmtp (1.1.3-35-g0ece104-2) unstable; urgency=low
 
   * Device db updates picked from upstream git:
diff -Nru libmtp-1.1.3-35-g0ece104/debian/gbp.conf libmtp-1.1.3-35-g0ece104/debian/gbp.conf
--- libmtp-1.1.3-35-g0ece104/debian/gbp.conf	2012-07-13 10:23:37.0 +0200
+++ libmtp-1.1.3-35-g0ece104/debian/gbp.conf	2012-08-30 00:24:27.0 +0200
@@ -1,3 +1,5 @@
 [DEFAULT]
 pristine-tar = True
 sign-tags = True
+debian-branch = master.wheezy
+upstream-branch = upstream.wheezy
diff -Nru libmtp-1.1.3-35-g0ece104/debian/patches/0001-devicedb_updates.patch libmtp-1.1.3-35-g0ece104/debian/patches/0001-devicedb_updates.patch
--- libmtp-1.1.3-35-g0ece104/debian/patches/0001-devicedb_updates.patch	2012-07-18 10:57:50.0 +0200
+++ libmtp-1.1.3-35-g0ece104/debian/patches/0001-devicedb_updates.patch	2012-08-30 00:30:30.0 +0200
@@ -5,10 +5,12 @@
   - 68f3cb6bcc0a6f24e66377a6f0ab707ff3457bf9
   - e9082f609faa9fe1301a86a52aca6563a1040e70
   - f9b50b4b6e7721c7d77e0f22779276c3a0981ad0
+ Debian BTS:
+  - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=683637
 Origin: upstream
 ---
- src/music-players.h |   23 +++
- 1 file changed, 19 insertions(+), 4 deletions(-)
+ src/music-players.h |   26 ++
+ 1 file changed, 22 insertions(+), 4 deletions(-)
 
 --- libmtp.orig/src/music-players.h
 +++ libmtp/src/music-players.h
@@ -22,7 +24,17 @@
// Reported by Nigel Cunningham ni...@tuxonice.net
// Guessing on Android bugs
{ Toshiba, 0x0930, Thrive AT100/AT105, 0x7100,
-@@ -1472,6 +1475,10 @@
+@@ -1331,6 +1334,9 @@
+   // Reported by Anonymous SourceForge user
+   { Sony, 0x054c, DCR-SR75, 0x1294,
+   DEVICE_FLAGS_SONY_NWZ_BUGS },
++  // Reported by Hideki Yamane henr...@debian.org
++  { Sony, 0x054c, Sony Tablet P1, 0x04d1,
++  DEVICE_FLAGS_ANDROID_BUGS },
+ 
+   /*
+* SonyEricsson
+@@ -1472,6 +1478,10 @@
// Reported by equaeghe equae...@users.sourceforge.net
{ SONY, 0x0fce, Xperia U ST25i (MTP+ADB mode), 0x5171,
DEVICE_FLAGS_ANDROID_BUGS },
@@ -33,7 +45,7 @@
// Reported by Anonymous Sourceforge user
{ SonyEricsson, 0x0fce,  j10i (Elm), 0xd144,
DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST },
-@@ -1501,6 +1508,8 @@
+@@ -1501,6 +1511,8 @@
DEVICE_FLAGS_ANDROID_BUGS },
{ Motorola, 0x22b8, Xoom 2 Media Edition, 0x4311,
DEVICE_FLAGS_ANDROID_BUGS },
@@ -42,7 +54,7 @@
// Reported by Marcus Meissner to libptp2
{ Motorola, 0x22b8, IdeaPad K1, 0x4811,
DEVICE_FLAG_BROKEN_SET_OBJECT_PROPLIST },
-@@ -1535,6 +1544,8 @@
+@@ -1535,6 +1547,8 @@
// Reported by anonymous Sourceforge user
{ Google Inc (for Asus), 0x18d1, TF101 Transformer, 0x4e0f,
DEVICE_FLAGS_ANDROID_BUGS },
@@ -51,7 +63,7 @@
// WiFi-only version of Xoom
// See: http://bugzilla.gnome.org/show_bug.cgi?id=647506
{ Google Inc (for Motorola), 0x18d1, Xoom (MZ604), 0x70a8,
-@@ -1702,8 +1713,9 @@
+@@ -1702,8 +1716,9 @@
 */
// Reported by anonymous SourceForge user
{ Huawei, 0x12d1, Honor U8860, 0x1051, DEVICE_FLAGS_ANDROID_BUGS },
@@ -62,7 +74,7 @@
  
/*
 * ZTE
-@@ -1718,7 +1730,9 @@
+@@ -1718,7 +1733,9 @@
{ HTC, 0x0bb4, Zopo ZP100, 0x0c02,
DEVICE_FLAGS_ANDROID_BUGS },
// Reported by Steven Eastland grassm...@users.sourceforge.net
@@ -73,7 +85,7 @@
DEVICE_FLAGS_ANDROID_BUGS },
// These identify themselves as cm_tenderloin, fun...
// Done by HTC for HP I guess.
-@@ -1745,9 +1759,10 @@
+@@ -1745,9 +1762,10 @@
{ Vizio, 0x0489, VTAB1008, 0xe040, DEVICE_FLAGS_ANDROID_BUGS },
  
/*


Bug#686228: wordpress: plugin dirs cannot be symlinked due to plugin_basename bug

2012-08-30 Thread Raphael Hertzog
On Thu, 30 Aug 2012, Oskar Liljeblad wrote:
 Now most plugins use plugin_basename(__FILE__) to determine their basename.
 It is assumed that this function returns a relative directory, but it doesn't
 if the plugin is not physically located in WP_PLUGIN_DIR (or 
 WPMU_PLUGIN_DIR).
 (With physically located I mean located according to realpath (without
 symlinks) - the plugin may still be reachable through WP_PLUGIN_DIR.)

The default value of WP_PLUGIN_DIR is (see wp-includes/default-constants.php):

define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR .  '/plugins' ); // full path, no 
trailing slash

And the default value of WP_CONTENT_DIR with the official Debian package
is /var/lib/wordpress/wp-content so WP_PLUGIN_DIR points to
/var/lib/wordpress/wp-content/plugins.

Given the above, I believe that there should be no problems. Please check
that you have a correct version of /usr/share/wordpress/wp-config.php.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Get the Debian Administrator's Handbook:
→ http://debian-handbook.info/get/


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



Bug#686181: Please allow translation of all debconf templates

2012-08-30 Thread Jonas Smedegaard
On 12-08-29 at 12:12pm, David Prévot wrote:
 A small typo in one of the templates (missing prepending underscore) 
 prevent one screen to be translated. It would be pointless to fix this 
 without a proper call for translation, so I'm proposing to take care 
 of it on your behalf, starting in two days (or sooner if you ACK this 
 proposal).
 
 d-l10n-english is xCC, in case they believe a proper review would 
 worth it (but I doubt it given the “These templates have been reviewed 
 by the debian-l10n-english team” header already present in those 
 files).

Please do go ahead.  And please work directly in the collab-maint git 
repository if you feel comfortable with that.


Regards,

 - 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: Digital signature


Bug#685183: RFP: Hiawatha webserver

2012-08-30 Thread Hugo Leisink

Nobody interested in a webserver with a special focus on security?


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



Bug#684931: /usr/share/x11/xkb/symbols/fi: AltGr problem

2012-08-30 Thread Troy Korjuslommi
Have you tried changing the IM to XIM?

Couple of things to try:

1. first kill firefox, then:
   export GTK_IM_MODULE=xim 
   firefox
2. Go to settings and change input method to XIM.
   (not on Ubuntu right now, but it's under settings and keyboard/input 
   method. The default is usually D-BUS or something.)
   Relogin and start firefox.


Troy


On Wed, 2012-08-29 at 21:50 +0300, Martin-Éric Racine wrote:
 2012/8/21 Troy Korjuslommi t...@tksoft.com:
  I would focus on the input method handling in gnome.
  If you set xim as IM in gnome, things work.
  Therefore, the logical starting point for debugging is the default IM
  gnome uses.
 
  I didn't make it clear, but the bugs I filed a couple of years back were
  gnome bugs. I am not in front of the right machine right now, but as I
  recall the effort didn't produce any results. It might even be that I
  never got replies other than this is not the right place to file a bug.
  Please file at XXX, and at XXX I was told to file at YYY. I might be
  mistaken, since it's a while back, but I do remember feeling frustrated
  at the process.
 
 I just verified and the compose sequence indeed works as expected in
 an xterm within a gnome-shell session.
 
 However, it fails to work in Firefox, gedit, gnome-terminal,
 LibreOffice and Pidgin — all of which are based on some GTK variant.
 
 Martin-Éric


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



Bug#686182: Please allow translation of all debconf templates

2012-08-30 Thread Justin B Rye
David Prévot quoted:
 Template: grub/migrate_from_legacy
 Type: note
 _Description: Upgrading from GRUB Legacy
  GRUB 0.97, the Legacy version of GNU GRUB, is from now on considered a
  deprecated option.  Your system is now being upgraded to GRUB 2.
  .
  GRUB 2 features a more advanced architecture, it's much more robust, and
  provides a number of new features.  However, not all features provided by
  GRUB Legacy are implemented in GRUB 2.
  .
  If for some reason you want to continue using GRUB Legacy, it is now provided
  in the `grub-legacy' package.  It will continue being supported at least up
  until the Squeeze release.

There are trivial house-style things I'd fiddle with if it was going
through a Smith Project review, but forget that - doesn't this need a
factual update for the status of grub-legacy in Wheezy?
-- 
JBR with qualifications in linguistics, experience as a Debian
sysadmin, and probably no clue about this particular package


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



Bug#671303: confirmation of the bug

2012-08-30 Thread Andre Landwehr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hi,
I can confirm the bug is there, 100% reproducable and at least in all
10.x versions. It also happens with original thunderbird. Thanks to
Stéphane for pointing me to the nscd workaround, I've been using
thunderbird on Windows for a year now because it didn't work on Linux
at all.

Regards,
Andre
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAlA/NH8ACgkQC3ZlGS1b0mOaUQCgrbQ3oE02IEAp5bTpQoglgD0R
ug8AniFwinItlawF6SUx7prLWEfx+OTa
=ZbSr
-END PGP SIGNATURE-


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



Bug#684106: RFS: ledgersmb/1.3.21-2

2012-08-30 Thread Raphael Hertzog
Hi,

On Thu, 30 Aug 2012, Bart Martens wrote:
 Hi Robert,
 
 Have you noticed that there's a newer upstream release ?
 http://sourceforge.net/projects/ledger-smb/files/

He did, but as he wanted to try to get an updated version into wheezy
(there are serious issues with the current version in wheezy), he
decided to stay on an older version with less upstream changes.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Get the Debian Administrator's Handbook:
→ http://debian-handbook.info/get/


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



Bug#686228: wordpress: plugin dirs cannot be symlinked due to plugin_basename bug

2012-08-30 Thread Oskar Liljeblad
On Thursday, August 30, 2012 at 11:18, Raphael Hertzog wrote:
  Now most plugins use plugin_basename(__FILE__) to determine their basename.
  It is assumed that this function returns a relative directory, but it 
  doesn't
  if the plugin is not physically located in WP_PLUGIN_DIR (or 
  WPMU_PLUGIN_DIR).
  (With physically located I mean located according to realpath (without
  symlinks) - the plugin may still be reachable through WP_PLUGIN_DIR.)
 
 The default value of WP_PLUGIN_DIR is (see wp-includes/default-constants.php):
 
 define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR .  '/plugins' ); // full path, no 
 trailing slash
 
 And the default value of WP_CONTENT_DIR with the official Debian package
 is /var/lib/wordpress/wp-content so WP_PLUGIN_DIR points to
 /var/lib/wordpress/wp-content/plugins.
 
 Given the above, I believe that there should be no problems. Please check
 that you have a correct version of /usr/share/wordpress/wp-config.php.

Looking at the bundled plugin, akismet, I see in
/usr/share/wordpress/wp-content/plugins/akismet/admin.php at least one
plugin_basename(__FILE__).

Wouldn't this cause a problem because

  plugin_basename(/usr/share/wordpress/wp-content/plugins/akismet/admin.php)

with

  WP_PLUGIN_DIR = /var/lib/wordpress/wp-content/plugins

would return

  /usr/share/wordpress/wp-content/plugins/akismet/admin.php

And that is not a basename - it's an absolute path...

Oskar


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



Bug#679721: Midori renders all XML as source, it doesn't check if a stylesheet exists

2012-08-30 Thread Paul Menzel
forwarded 679721 https://bugs.launchpad.net/midori/+bug/1043698
retitle 679721 Midori renders all XML as source, it doesn't check if a 
stylesheet exists
quit

I forgot to add cont...@bugs.debian.org to the recipient list (BCC) in
my last message.

Am Donnerstag, den 30.08.2012, 11:09 +0200 schrieb Paul Menzel:
 Am Sonntag, den 01.07.2012, 09:13 +0800 schrieb jida...@jidanni.org:
  Package: midori
  Version: 0.4.3-1
  
  $ midori http://ppt.cc/sR5T #just gets XML
  $ firefox http://ppt.cc/sR5T #works fine
 
 I am able to reproduce that with self-built Midori 0.4.6-531-gb78c0fd.
 
 Additionally GtkLauncher and Epiphany 3.4.2 work correct too, so there
 is a bug in Midori.
 
 Furthermore I reported a bug to the upstream Launchpad bug tracker as
 #1043698 [1].

In #midori at irc.freenode.net user kalikiana told me that there is no
HTML involved and everything is XML. Midori currently renders XML always
as source without checking for an existing stylesheet.


Thanks,

Paul


 [1] https://bugs.launchpad.net/midori/+bug/1043698


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


Bug#686199: unblock: xen-api/1.3.2-11

2012-08-30 Thread Thomas Goirand
On 08/30/2012 03:20 AM, Adam D. Barratt wrote:
 On Thu, 2012-08-30 at 03:01 +0800, Thomas Goirand wrote:
 Please unblock package xen-api.

 The PAM fix which we did for version 1.3.2-10 wasn't correct, and thanks to
 the help of Steve Langasek, we have it in a good shape now.

 The details of the conversation is available in the Ubuntu BTS here:
 https://bugs.launchpad.net/ubuntu/+source/xen-api/+bug/1033899
 
 Trying to view that conversation gives me:
 
 Launchpad.net
 Lost something?
 This page does not exist, or you may not have permission to see it.
 
 That's not particularly helpful... :/
 
 Regards,
 
 Adam

Hi,

Indeed, this is a permission problem in this page, its marked as
Private Security. I'm not sure how the Ubuntu stuff works though.

I'm not a PAM specialist, and I'm afraid I can't comment much in here.
Mike is unfortunately away for a while (I'm not sure I should disclose
why), so he wont be able to explain what was wrong in version -10. I
have to admit that I was busy doing other stuff, and that I'm not sure
what the problem was.

Steve, can you comment about the changes in the PAM settings committed
in this latest version of XCP, and explain to the release team why we
needed to change it and unblock the fixed xen-api/1.3.2-11? Thanks in
advance.

Cheers,

Thomas


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



Bug#554843: [Pkg-dkms-maint] Bug#554843: bullding pure binary deb packages

2012-08-30 Thread Stefan Seidel
It is indeed possible to build those module packages. After dkms
build, cd to /var/lib/dkms/$MODULE$/$MOD_VERS$/build and execute

KVERS=`uname -r` fakeroot debian/rules binary-modules

This will create the correct $MODULE-module-$KVERS-$MOD_VERS deb
package with no Depends. I tested this with iscsitarget-dkms.

It should be possible to add a mkbmdeb (make binary-modules deb)
action to dkms which executes this command (possibly with KVERS as a
parameter, just like for the mkkmp target).

Stefan


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



Bug#684931: /usr/share/x11/xkb/symbols/fi: AltGr problem

2012-08-30 Thread Josselin Mouette
Le lundi 20 août 2012 à 17:08 +0300, Martin-Éric Racine a écrit : 
 I'm begining to wonder if GTK3 or GNOME3 maintain their own
 (presumably outdated) copies of the xkb-data keymaps?

Yes.

http://git.gnome.org/browse/gtk+/tree/gtk/gtkimcontextsimpleseqs.h

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-


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



Bug#686203: live-build: binary image hdd is broken

2012-08-30 Thread Daniel Baumann

severity 686203 normal
retitle 686203 binary image hdd is broken
tag 686203 - upstream
thanks

On 08/29/2012 11:35 PM, Ben Armstrong wrote:

Unreproducible.


i just run a build here too, coudn't reproduce it either.

--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


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



Bug#686228: wordpress: plugin dirs cannot be symlinked due to plugin_basename bug

2012-08-30 Thread Raphael Hertzog
Hi,

On Thu, 30 Aug 2012, Oskar Liljeblad wrote:
  Given the above, I believe that there should be no problems. Please check
  that you have a correct version of /usr/share/wordpress/wp-config.php.
 
 Looking at the bundled plugin, akismet, I see in
 /usr/share/wordpress/wp-content/plugins/akismet/admin.php at least one
 plugin_basename(__FILE__).
 
 Wouldn't this cause a problem because
 
   plugin_basename(/usr/share/wordpress/wp-content/plugins/akismet/admin.php)
 
 with
 
   WP_PLUGIN_DIR = /var/lib/wordpress/wp-content/plugins
 
 would return
 
   /usr/share/wordpress/wp-content/plugins/akismet/admin.php
 
 And that is not a basename - it's an absolute path...

Right, it looks like we have to enhance plugin_basename() to be aware of the
two possible locations of plugins. :-|

I wonder if there are other similar pitfalls with this design choice.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Get the Debian Administrator's Handbook:
→ http://debian-handbook.info/get/


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



Bug#686173: ld segfaults when linking uncomforming ELF

2012-08-30 Thread Hakan Ardo
Thanx!
I'm uploading a new version binutils-avr with this patch. Please
verify that it solves the problem.

On Wed, Aug 29, 2012 at 5:54 PM, Scott Howard showard...@gmail.com wrote:
 owner 686173
 submitter 686173 jack23...@hotmail.com
 reassign 686173 binutils-avr 2.20.1-2
 severity 686173 serious
 tags 686173 patch
 forwarded 686173 http://sourceware.org/bugzilla/show_bug.cgi?id=12161
 thanks

 The following upstream bug [1] appears in Debian and the patch should
 be applied to the debian sources [2].

 When compiling the Ethernet library examples in the arduino package
 for a mega 256 or ADK target board, ld will crash with a segfault.
 When the below patch is applied to the Debian sources, it compiles
 cleanly.

 It's related to the fact that the mega 256 target board uses the
 -Wl,--relax linker option since it has greater than 128 kB of memory
 [3] which somehow started causing problems once code was compiled with
 gcc 4.7.

 Thank you!
 Regards,
 Scott



 [1] http://sourceware.org/bugzilla/show_bug.cgi?id=12161
 [2] 
 http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/elf32-avr.c.diff?cvsroot=srconly_with_tag=binutils-2_22-branchr1=1.51r2=1.51.2.1
 [3] http://sourceware.org/bugzilla/show_bug.cgi?id=13612



-- 
Håkan Ardö


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



Bug#686231: dragonegg-4.6: internal compiler error: Segmentation fault with llvm-gcc

2012-08-30 Thread Vincent Lefevre
Package: dragonegg-4.6
Version: 3.1-2
Severity: important

I get the following ICE on the following program:

int f (unsigned int u)
{
  unsigned int c;
  __asm__ (bsr %1,%0 : =r (c) : rm (u));
  return 0;
}

$ llvm-gcc -c test.i
*** WARNING *** there are active plugins, do not report this as a bug unless 
you can reproduce it without enabling any plugins.
Event| Plugins
PLUGIN_FINISH_UNIT   | dragonegg
PLUGIN_FINISH| dragonegg
PLUGIN_START_UNIT| dragonegg
PLUGIN_ALL_IPA_PASSES_END| dragonegg
test.i: In function ‘f’:
test.i:4:3: internal compiler error: Segmentation fault
[...]

This is due to the dragonegg plugin, because gcc-4.6 alone is fine
on this example.

Due to this bug, GNU MPFR cannot be built with llvm-gcc.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dragonegg-4.6 depends on:
ii  libc6   2.13-35
ii  libffi5 3.0.10-3
ii  libgcc1 1:4.7.1-7
ii  libstdc++6  4.7.1-7

Versions of packages dragonegg-4.6 recommends:
ii  g++-4.6  4.6.3-9
ii  gcc-4.6  4.6.3-9

dragonegg-4.6 suggests no packages.

-- no debconf information


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



Bug#686232: Missing recommends dependency on gnuplot-x11

2012-08-30 Thread Carlos Alberto Lopez Perez
Package: pepper
Version: 0.3.2-2
Severity: normal


Pepper misses a recommends dependency on gnuplot-x11.


$ pepper commit_counts --period=18m
Fetching revisions... done

gnuplot set terminal x11 size 800,480
  ^
 line 0: unknown or ambiguous terminal type; type just 'set terminal' 
for a list




After manually installing gnuplot-x11 the problem goes away and pepper works as 
expected



signature.asc
Description: OpenPGP digital signature


Bug#686233: kde-baseapps: Systems Settings: Claims settings changed if they have not

2012-08-30 Thread Boris Hollas
Package: kde-baseapps
Version: 4:4.8.4-1
Severity: normal

How to reproduce:
Click Systems Settings-Multimedia-Overview
Message appears The settings of the current module have changed which is
wrong.

Also happens with other system settings.



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages kde-baseapps depends on:
ii  dolphin   4:4.8.4-1
ii  kde-baseapps-bin  4:4.8.4-1
ii  kdepasswd 4:4.8.4-1
ii  kfind 4:4.8.4-1
ii  konqueror 4:4.8.4-1
ii  konsole   4:4.8.4-1
ii  kwrite4:4.8.4-1
ii  plasma-widget-folderview  4:4.8.4-1

Versions of packages kde-baseapps recommends:
ii  konqueror-nsplugins  4:4.8.4-1

kde-baseapps suggests no packages.

-- no debconf information


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



Bug#686196: httping: Segmentation fault (after slow responses?)

2012-08-30 Thread Nico Golde
Hi,
* Olaf van der Spek olafvds...@gmail.com [2012-08-29 22:41]:
 On Wed, Aug 29, 2012 at 10:29 PM, folkert folk...@vanheusden.com wrote:
  Maybe it's simpler if you run gdb yourself. ;)
 
  Yes but then I cannot reproduce it.
 
 Hmm, did you try?

I can also not reproduce the problem :/

Cheers
Nico
-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0xA0A0


pgpgn7GwSTmcN.pgp
Description: PGP signature


Bug#686196: httping: Segmentation fault (after slow responses?)

2012-08-30 Thread Folkert van Heusden
In a not entirely unrelated note: yesterday evening Coverity did a
scan of httping and found nothing alarming!
That's great news.

On Thu, Aug 30, 2012 at 1:16 PM, Nico Golde n...@debian.org wrote:
 Hi,
 * Olaf van der Spek olafvds...@gmail.com [2012-08-29 22:41]:
 On Wed, Aug 29, 2012 at 10:29 PM, folkert folk...@vanheusden.com wrote:
  Maybe it's simpler if you run gdb yourself. ;)
 
  Yes but then I cannot reproduce it.

 Hmm, did you try?

 I can also not reproduce the problem :/

 Cheers
 Nico
 --
 Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0xA0A0


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



Bug#686234: zathura: Don't start searching until 'Enter' pressed

2012-08-30 Thread George B.
Package: zathura
Version: 0.1.2-4
Severity: wishlist

Hello,

Is it possible to have zathura behave more like 'less' with regard to 
searching, i.e. to start searching only after enter key is pressed.

At present searching starts as soon as character is entered which in my case 
(for a large PDF document) causes the screen to freeze up for a few seconds.


Thanks,

George


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages zathura depends on:
ii  libc6 2.13-35
ii  libcairo2 1.12.2-2
ii  libgirara-gtk2-0  0.1.2-3
ii  libglib2.0-0  2.32.3-1
ii  libgtk2.0-0   2.24.10-2
ii  libpoppler-glib8  0.18.4-3
ii  libsqlite3-0  3.7.13-1

zathura recommends no packages.

Versions of packages zathura suggests:
ii  chromium [www-browser]   21.0.1180.75~r150248-1
ii  iceweasel [www-browser]  14.0.1-2
ii  poppler-data 0.4.5-10
ii  w3m [www-browser]0.5.3-8
pn  zathura-djvu none
pn  zathura-ps   none

-- no debconf information


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



Bug#602684: bootchart2: Please support custom init (e.g. /bin/systemd)

2012-08-30 Thread Laurent Bigonville
Package: bootchart2
Followup-For: Bug #602684

Hi,

This seems to be fixed.

With the following arguments, my system is properly booting using
systemd:

$ cat /proc/cmdline 
BOOT_IMAGE=/vmlinuz-3.4-trunk-amd64 root=/dev/mapper/eldamar-root ro
selinux=1 security=selinux quiet splash pcie_aspm=force
init=/sbin/bootchartd initcall_debug printk.time=y
bootchart_init=/bin/systemd

Cheers

Laurent

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.4-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_BE.utf8, LC_CTYPE=fr_BE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bootchart2 depends on:
ii  libc6  2.13-35

Versions of packages bootchart2 recommends:
ii  pybootchartgui  0.14.4-1

bootchart2 suggests no packages.

-- no debconf information


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



Bug#686235: Committee list of decisions on webpage is incomplete

2012-08-30 Thread Ian Jackson
Package: tech-ctte

Stefano Zacchiroli writes (Re: tech-ctte webpage cleanup):
 On Wed, Aug 29, 2012 at 03:31:09PM +0100, Ian Jackson wrote:
  While I was there I noticed some infelicities, so I have:
 
 Thanks Ian. Prodded by this, I've documented the current team formation
 in /intro/organization, which was out of date after recent changes. The
 change will be live at the next website update pulse.

Thanks.  (Do you know how often that happens?)

 It seems to me that the history section of appointments in the tech-ctte
 page is out of date: Manoj should be thanked there, AFAICT. Also, Colin
 is not mentioned in the Formal nontechnical and procedural decisions
 section. All in all, I'm not sure if it's worth the effort of keeping up
 to date that part...

I think we should do so.  Someone (I volunteer) should go through the
list archives and look for anything else we're missing.  grepping for
vote might do it.

It's a relatively small amount of work to do this when we make a final
decision, compared to the effort of discussing, voting, etc.  If it
gets too tedious we can probably automate it a bit more.

Ian.


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



Bug#642343: pybootchartgui: list index out of range bug while parsing

2012-08-30 Thread Laurent Bigonville
Package: pybootchartgui
Followup-For: Bug #642343

Hi,

Any hope this will be fixed for the wheezy release?

This make pybootchartgui unsusable to me.

Cheers

Laurent Bigonville

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.4-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_BE.utf8, LC_CTYPE=fr_BE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages pybootchartgui depends on:
ii  python2.7.3-2
ii  python-cairo  1.8.8-1+b2
ii  python-gtk2   2.24.0-3
ii  python2.6 2.6.8-0.2
ii  python2.7 2.7.3-4

pybootchartgui recommends no packages.

pybootchartgui suggests no packages.

-- no debconf information


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



Bug#686231: dragonegg-4.6: internal compiler error: Segmentation fault with llvm-gcc

2012-08-30 Thread Vincent Lefevre
With valgrind --trace-children=yes llvm-gcc -c test.i, I get:

[...]
==27077== Memcheck, a memory error detector
==27077== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
==27077== Using Valgrind-3.8.0 and LibVEX; rerun with -h for copyright info
==27077== Command: /usr/lib/gcc/x86_64-linux-gnu/4.6/cc1 -fpreprocessed test.i 
-iplugindir=/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin -quiet -dumpbase test.i 
-mtune=generic -march=x86-64 -auxbase test 
-fplugin=/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/dragonegg.so -o 
/tmp/ccfPuGIx.s
==27077== 
==27077== Invalid read of size 1
==27077==at 0x860826: decode_reg_name_and_count (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/cc1)
==27077==by 0x86099D: decode_reg_name (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/cc1)
==27077==by 0xCB39169: ??? (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/dragonegg.so)
==27077==by 0xCB4400A: ??? (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/dragonegg.so)
==27077==by 0xCB4415A: ??? (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/dragonegg.so)
==27077==by 0xCB192DB: ??? (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/dragonegg.so)
==27077==by 0xCB193DE: ??? (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/dragonegg.so)
==27077==by 0x69D2F8: execute_one_pass (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/cc1)
==27077==by 0x69D5A4: execute_pass_list (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/cc1)
==27077==by 0x769A50: tree_rest_of_compilation (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/cc1)
==27077==by 0x8A9FCE: ??? (in /usr/lib/gcc/x86_64-linux-gnu/4.6/cc1)
==27077==by 0x8ABE6D: cgraph_optimize (in 
/usr/lib/gcc/x86_64-linux-gnu/4.6/cc1)
==27077==  Address 0x40110041 is not stack'd, malloc'd or (recently) free'd
==27077== 
[...]

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


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



Bug#686236: isc-dhcp-client: please support a policy-compliant method for other packages to request additional dhcp options

2012-08-30 Thread Helmut Grohne
Package: isc-dhcp-client
Version: 4.2.2.dfsg.1-5
Severity: wishlist
Control: block 611438 by -1

As can be seen in #611438 for example there is a desire for other
packages to request additional options. Once dhclient requests them they
are easily processed, because dhclient provides a directory for hooks
which is already used by a number of packages (resolvconf, ntp, samba,
...). However if a package needs more variables than those provided, it
is currently out of luck. As you may have guessed I ran into this issue
on my own. Instead of filing my request for a special option, I turn
this issue into a general one. Currently the only way for a package to
request additional options is to extend /etc/dhcp/dhclient.conf in
postinst and revert those changes in postrm purge. Of course such
scripts violate policy. To solve this issue a conf.d style approach
would be desirable.

Helmut


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



Bug#686237: libnss-sss: Cannot install libnss-sss:i386 on mulitarch amd64 system

2012-08-30 Thread Florian Wagner
Package: libnss-sss
Version: 1.8.4-1
Severity: normal

I've just added i386 as a foreign architecture on my amd64 system
and tried to install libnss-sss:i386 so that my 32-bit programs
can resolve user ids.

This does not work as libnss-sss depends on perl which resolves to
perl:i386 on multiarch, which conflichts with the already installed
perl(:amd64).

Does libnss-sss really need perl? The shared library neither links
against perl nor does it seem to do anything with it:

 $ ldd /lib/x86_64-linux-gnu/libnss_sss.so.2 | grep -i perl
 $ strings /lib/x86_64-linux-gnu/libnss_sss.so.2 | grep -i perl


Regards
Florian Wagner

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libnss-sss depends on:
ii  libc6  2.13-35
ii  multiarch-support  2.13-35
ii  perl   5.14.2-12

Versions of packages libnss-sss recommends:
ii  sssd  1.8.4-1

libnss-sss suggests no packages.

-- no debconf information


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



Bug#686238: gnunet-server: Access from `unbound UNIX client' denied to service `namestore'

2012-08-30 Thread Daniel Dehennin
Package: gnunet-server
Version: 0.9.3-2
Severity: normal

Dear Maintainer,

I'm trying to setup GNS and has access control restriction like
with #684317:

  Aug 30 13:27:54-632183 util-1288 WARNING Access denied to UID 1000 / GID 1000
  Aug 30 13:27:54-632221 util-1288 WARNING Access from `unbound UNIX client' 
denied to service `namestore'

After finding /usr/share/gnunet/config.d which is very useful to know
all possible settings, I added the following to make it working:

  [namestore]
  UNIX_MATCH_UID = NO

Regards

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (90, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.6.0-rc3+hati.1 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnunet-server depends on:
ii  adduser3.113+nmu3
ii  debconf [debconf-2.0]  1.5.46
ii  gettext0.18.1.1-9
ii  gnunet-common  0.9.3-2
ii  libc6  2.13-35
ii  libcurl3-gnutls7.27.0-1
ii  libextractor3  1:0.6.3-5
ii  libglpk0   4.45-1
ii  libmicrohttpd100.9.20-1
ii  libmysqlclient18   5.5.24+dfsg-7
ii  libpq5 9.1.5-1
ii  libsqlite3-0   3.7.13-1
ii  netbase5.0
ii  zlib1g 1:1.2.7.dfsg-13

gnunet-server recommends no packages.

Versions of packages gnunet-server suggests:
pn  miniupnpc  none

-- Configuration Files:
/etc/gnunet.conf changed:
[PATHS]
SERVICEHOME = /var/lib/gnunet
DEFAULTCONFIG = /etc/gnunet.conf
[hostlist]
OPTIONS = -b -e -a -p
SERVERS = http://v9.gnunet.org:58080/
EXTERNAL_DNS_NAME = zion.baby-gnu.net
[nat]
BEHIND_NAT = YES
PUNCHED_NAT = YES
DISABLEV6 = YES
EXTERNAL_ADDRESS = 82.225.168.180
INTERNAL_ADDRESS = 192.168.1.2
[ats]
LAN_QUOTA_IN = 300 KiB
LAN_QUOTA_OUT = 50 KiB
WAN_QUOTA_IN = 300 KiB
WAN_QUOTA_OUT = 50 KiB
[dhtcache]
QUOTA = 10 MB
[datacache-mysql]
CONFIG = /home/dad
[transport]
PLUGINS = tcp udp http
[topology]
FRIENDS = /home/dad
[datastore]
UNIX_MATCH_UID = NO
QUOTA = 20480 MB
[datastore-mysql]
CONFIG = /home/dad
[namestore]
UNIX_MATCH_UID = NO


-- debconf information:
  gnunet-server/groupname: gnunet
  gnunet-server/autostart: true
  gnunet-server/username: gnunet

-- 
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x7A6FE2DF


pgpP1NWmifnHF.pgp
Description: PGP signature


Bug#686234: zathura: Don't start searching until 'Enter' pressed

2012-08-30 Thread Sebastian Ramacher
Control: forwarded -1 http://bugs.pwmt.org/issue248
Control: tags -1 + upstream

On 30/08/12 12:46, George B. wrote:
 Is it possible to have zathura behave more like 'less' with regard to 
 searching, i.e. to start searching only after enter key is pressed.
 
 At present searching starts as soon as character is entered which in my case 
 (for a large PDF document) causes the screen to freeze up for a few seconds.

It is currently not possible to do so. I've forwarded your request upstream.

Kind regards
-- 
Sebastian Ramacher



signature.asc
Description: OpenPGP digital signature


Bug#686235: Committee list of decisions on webpage is incomplete

2012-08-30 Thread Stefano Zacchiroli
On Thu, Aug 30, 2012 at 12:29:51PM +0100, Ian Jackson wrote:
  Thanks Ian. Prodded by this, I've documented the current team formation
  in /intro/organization, which was out of date after recent changes. The
  change will be live at the next website update pulse.
 
 Thanks.  (Do you know how often that happens?)

6 times a day, IIRC.

  It seems to me that the history section of appointments in the tech-ctte
  page is out of date: Manoj should be thanked there, AFAICT. Also, Colin
  is not mentioned in the Formal nontechnical and procedural decisions
  section. All in all, I'm not sure if it's worth the effort of keeping up
  to date that part...
 
 I think we should do so.  Someone (I volunteer) should go through the
 list archives and look for anything else we're missing.  grepping for
 vote might do it.
 
 It's a relatively small amount of work to do this when we make a final
 decision, compared to the effort of discussing, voting, etc.  If it
 gets too tedious we can probably automate it a bit more.

The bug title makes me believe I didn't convey the scope of my comment
well enough. I was referring specifically to the _nontechnical_
decisions section, which seems to boil down essentially to appointments.

For the rest, I fully agree it's worth (and important) documenting
technical decisions. Given you're working on standardizing BTS usage for
tech-ctte purposes, automation can probably be built on top of that.

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


signature.asc
Description: Digital signature


Bug#686063: phonon: Message audio playback does not work at startup

2012-08-30 Thread Boris Hollas
Package: phonon
Followup-For: Bug #686063

I spent 5 minutes in Systems Settings-Hardware, but I don't see how to change
my audio device to Default.

Meanwhile, the message doesn't show up anymore when I start KDE. Don't know if
KDE has just given up or if some full-upgrade fixed it.



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages phonon depends on:
ii  debconf [debconf-2.0]1.5.46
ii  libphonon4   4:4.6.0.0-2
ii  phonon-backend-vlc [phonon-backend]  0.5.0+14.g382da0d-2

phonon recommends no packages.

Versions of packages phonon suggests:
pn  phonon-backend-gstreamer  none
pn  phonon-backend-mplayernone
ii  phonon-backend-vlc0.5.0+14.g382da0d-2

-- debconf information:
  phonon-backend-null/isnt_functional:
  phonon-backend-null/isnt_functional_title:


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



Bug#686235: Committee list of decisions on webpage is incomplete

2012-08-30 Thread Ian Jackson
Stefano Zacchiroli writes (Re: Bug#686235: Committee list of decisions on 
webpage is incomplete):
 The bug title makes me believe I didn't convey the scope of my comment
 well enough. I was referring specifically to the _nontechnical_
 decisions section, which seems to boil down essentially to appointments.

I would like these properly recorded too.

 For the rest, I fully agree it's worth (and important) documenting
 technical decisions. Given you're working on standardizing BTS usage for
 tech-ctte purposes, automation can probably be built on top of that.

Heh.

Ian.


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



Bug#686239: devscripts: [debi] Fails to find .changes with subversion = 1.7

2012-08-30 Thread Neil Williams
Package: devscripts
Version: 2.12.1
Severity: normal

debi currently checks for a .svn directory to see if it should
look in the svn ../build-area/ for the .changes file. The
..svn directory has been removed in subversion  1.7 and can
no longer be relied upon - svn info would have to be used
instead.


-- Package-specific info:

--- /etc/devscripts.conf ---

--- ~/.devscripts ---
DEBSIGN_KEYID=0x8143B682
DEBRELEASE_UPLOADER=dput
DSCVERIFY_KEYRINGS=/home/neil/.gnupg/pubring.gpg

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: armel
i386

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages devscripts depends on:
ii  dpkg-dev  1.16.8
ii  libc6 2.13-35
ii  perl  5.14.2-12
ii  python2.7.3-2

Versions of packages devscripts recommends:
ii  at3.1.13-2
ii  curl  7.27.0-1
ii  dctrl-tools   2.22.2
pn  debian-keyringnone
ii  dput  0.9.6.3
ii  dupload   2.7.0
pn  equivsnone
ii  fakeroot  1.18.4-2
ii  gnupg 1.4.12-4+b1
ii  libcrypt-ssleay-perl  0.58-1
pn  libdistro-info-perl   none
pn  libjson-perl  none
ii  libparse-debcontrol-perl  2.005-3
ii  libsoap-lite-perl 0.714-1
ii  liburi-perl   1.60-1
ii  libwww-perl   6.04-1
ii  lintian   2.5.10.1
ii  man-db2.6.2-1
ii  patch 2.6.1-3
ii  patchutils0.3.2-1.1
ii  python-debian 0.1.21
pn  python-magic  none
ii  sensible-utils0.0.7
ii  strace4.5.20-2.3
ii  unzip 6.0-7
ii  wdiff 1.1.2-1
ii  wget  1.14-1
ii  xz-utils  5.1.1alpha+20120614-1

Versions of packages devscripts suggests:
ii  bsd-mailx [mailx]8.1.2-0.2006cvs-1
ii  build-essential  11.5
ii  cvs-buildpackage 5.23
pn  devscripts-elnone
pn  gnuplot  none
pn  libauthen-sasl-perl  none
pn  libfile-desktopentry-perlnone
pn  libnet-smtp-ssl-perl none
pn  libterm-size-perlnone
ii  libtimedate-perl 1.2000-1
ii  libyaml-syck-perl1.20-1
ii  mutt 1.5.21-6.2
ii  openssh-client [ssh-client]  1:6.0p1-3
ii  svn-buildpackage 0.8.5
ii  w3m  0.5.3-8

-- no debconf information


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



Bug#686240: google-glog not compiled with google-gflags installed

2012-08-30 Thread Alberto Quattrini Li
Package: libgoogle-glog
Version: 0.3.2-1

When I use some setting flags defined in the library glog in a program,

e.g.,

#include gflags/gflags.h
#include glog/logging.h
#include iostream

int main(int argc, char* argv[])
{
// Initialize Google's logging library.
google::InitGoogleLogging(argv[0]);
std::cout  fLI::FLAGS_v;
std::cout  fLI::FLAGS_log_dir;
}

and compile this program, I get the following compilation errors:

undefined reference to `fLI::FLAGS_v’
undefined reference to `fLI::FLAGS_log_dir’

If I download the source code of glog and compile it, then the errors are fixed.

This means that, in the package, google-glog is compiled without
google-gflags installed.

I am using Debian sid, kernel 3.2.0-1-amd64.

Alberto Quattrini Li


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



Bug#682613: abiword: black background, blinking when scrolling

2012-08-30 Thread Dmitry Smirnov
On Thu, 30 Aug 2012 11:53:50 you wrote:
 Simon from Xubuntu suggested we grab the fix for this bug to fix the
 black background for the ruler area.
 
 http://bugzilla.abisource.com/show_bug.cgi?id=13301
 

Thanks for the hint Jeremy, I wasn't aware of this bug report.

Cheers,
Dmitry.


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



Bug#684931: /usr/share/x11/xkb/symbols/fi: AltGr problem

2012-08-30 Thread Martin-Éric Racine
2012/8/30 Josselin Mouette j...@debian.org:
 Le lundi 20 août 2012 à 17:08 +0300, Martin-Éric Racine a écrit :
 I'm begining to wonder if GTK3 or GNOME3 maintain their own
 (presumably outdated) copies of the xkb-data keymaps?

 Yes.

 http://git.gnome.org/browse/gtk+/tree/gtk/gtkimcontextsimpleseqs.h

Thanks for the info, Joss. At least, we now know what tool is used to
generate this, so we might be in a position to produce a patch.
However, I'm not sure of which Debian source package this corresponds
to. Something tells me that you might know, however, so could you
please reassign it to the correct one? Thanks!

Martin-Éric


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



Bug#685333: patch for drupal7

2012-08-30 Thread Daniel Pocock
Control: tags -1 + patch


This patch fixes the drupal7 README.Debian


Now it refers to /usr/local/share/drupal/7

rather than just /usr/local/share/drupal


Index: debian/README.Debian
===
--- debian/README.Debian	(revision 2276)
+++ debian/README.Debian	(working copy)
@@ -167,8 +167,10 @@
 directory that won't be touched by dpkg, e.g. in the /usr/local
 hierarchy:
 
- # ln -s /usr/local/share/drupal/modules /usr/share/drupal7/modules/local
- # ln -s /usr/local/share/drupal/themes /usr/share/drupal7/themes/local
+ # mkdir -p /usr/local/share/drupal/7/modules
+ # mkdir -p /usr/local/share/drupal/7/themes
+ # ln -s /usr/local/share/drupal/7/modules /usr/share/drupal7/modules/local
+ # ln -s /usr/local/share/drupal/7/themes /usr/share/drupal7/themes/local
 
 
 11. Privacy of session cookies


Bug#686181: Please allow translation of all debconf templates

2012-08-30 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi Jonas,

Le 30/08/2012 05:27, Jonas Smedegaard a écrit :
 On 12-08-29 at 12:12pm, David Prévot wrote:
 A small typo in one of the templates (missing prepending underscore) 
 prevent one screen to be translated. It would be pointless to fix this 
 without a proper call for translation, so I'm proposing to take care 
 of it on your behalf

 Please do go ahead.

Call for update sent.

 And please work directly in the collab-maint git 
 repository if you feel comfortable with that.

Commits are ready, but the repository is actually in pkg-multimedia. I
asked to join and will push that fix and the translation updates too as
soon as I'm accepted. Since there is a new upstream release in Sid, I
also volunteer to take care of the t-p-u as a team upload if that's OK
with you (I'll create a wheezy branch and cherry pick the needed commit
to do that).

Regards

David

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

iQIcBAEBCAAGBQJQP2B1AAoJELgqIXr9/gny3HoP/2/cJAwKNtrL7OH669xNVff/
kALM0EB8/54iIrTLV18byHyp/FnkyYWc4LHwI18KxwLA8fiy72P2Kkoz/9ICHeto
aWNhcf9bIVTFEcqe8vvZbO5WbF4E9RqvdQGvQcBr//2Zpn2tI5y6DeFrVXMJAeqP
axVAhNdgTgnF6m3EL8L7hfeEMZoia9BxwD7oqgQxOG6VP6riTp5XpdhKoxLAMRFV
BwaE+Q17BNqxQ8RSBA/tH4B3yXjjT+90GDaaxjIakGHzXU1nW/iKRpIvP5hkJdCd
ktgEpYExhk3qUmAsff+AiGhBi0lugWPLfJKnghDeRd+pj9d09+olThqjoDVxAQ8l
9Zaa9xK957mYYDHUmc3rvndJjJUkZ6aDKqVegpzXwpiDYVouwOCMD1QQ1xeWlIx+
fyIgvBEbhir9QIAoWRw9mspPFH2q5vcCFuhXZvW8xapxCYVN0cOvZJw66fdc4eC8
PCgXC1G+hn6jiF8qKQIXX+YCeIAcMZChDkwMHd8ObGEFrLihDhGH1Xt65W/Pku0/
XD7FQ9VUKLmBjqiAJR5bwhsIri8yQ+7MPbomEkpZf5nM/VbalhuEBWY9X4yn/DHv
5k28c99CBek3pdBX57yLUKWJJznJc/T9WWCVhm3JE8M4Z8ZYAcgOZNXDg9jBJy5K
BP9ibZkNuxqAH3z6xF2Q
=Nvzs
-END PGP SIGNATURE-


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



Bug#680845: derivations: FTBFS: Can't create output index file /«PKGBUILDDIR»/tex/main.ind.

2012-08-30 Thread Thaddeus H. Black
The patch and testing are appreciated.  Please NMU with my thanks.
Otherwise, I'll test, build and upload as soon as I can, though this
may not be soon enough.

If you can read the book and your PDF reader can display its table of
contents in a sidebar, then your patch is very likely good.  If you
can read the book but your PDF reader cannot display the table of
contents in a sidebar, the sidebar is not crucial and you should still
upload.  (After all, the book still has a fine table of contents for
the human reader to read and use.  If the PDF reader cannot parse the
table, too, this is no disaster.)

The book purposely has no PDF hyperlinks in it.  In other words, it
doesn't have those blue page numbers you can click to go straight to
the referenced page.  Thus, if you do not see blue page numbers, this
does not mean that you have done something wrong.

[Recent package transitions unfortunately have made awkward what used
to be a rather elegant build.  At the root of the trouble is the need
(a) to create a PDF from LaTeX, (b) to give the PDF a proper PDF table
of contents without using PDFLaTeX, (c) to include LaTeX-nonstandard
PostScript in the PDF, and (d) to do all this using special build
tools, compiled from source as part of the Derivations package's build
procedure.  All this used to work rather nicely, and recently I have
accepted well-appreciated patches to kludge the build procedure to get
it through the upcoming stable release.  Hopefully, this will be the
last adjustment to the kludge.  After the stable release, when time
permits, I'll probably reform the entire build procedure, but for now
the patches, and NMU if appropriate, are welcomed with thanks.]

-- 
Thaddeus H. Black


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



Bug#686231: dragonegg-4.6: internal compiler error: Segmentation fault with llvm-gcc

2012-08-30 Thread Vincent Lefevre
reassign 686231 cpp-4.6
found 686231 4.6.3-9
thanks

On 2012-08-30 13:08:28 +0200, Vincent Lefevre wrote:
 Package: dragonegg-4.6
 Version: 3.1-2
 Severity: important
 
 I get the following ICE on the following program:
 
 int f (unsigned int u)
 {
   unsigned int c;
   __asm__ (bsr %1,%0 : =r (c) : rm (u));
   return 0;
 }
 
 $ llvm-gcc -c test.i
 *** WARNING *** there are active plugins, do not report this as a bug unless 
 you can reproduce it without enabling any plugins.
 Event| Plugins
 PLUGIN_FINISH_UNIT   | dragonegg
 PLUGIN_FINISH| dragonegg
 PLUGIN_START_UNIT| dragonegg
 PLUGIN_ALL_IPA_PASSES_END| dragonegg
 test.i: In function ‘f’:
 test.i:4:3: internal compiler error: Segmentation fault
 [...]
 
 This is due to the dragonegg plugin, because gcc-4.6 alone is fine
 on this example.

Downgrading llvm-gcc / dragonegg doesn't solve the problem, while
it was working in the past. But downgrading the packages of gcc-4.6
source from 4.6.3-9 to 4.6.3-8 solves the problem. As valgrind
output shows that the crash occurs in

  /usr/lib/gcc/x86_64-linux-gnu/4.6/cc1

I assume that the bug is in cpp-4.6.

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


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



Bug#686241: httping: Show run time

2012-08-30 Thread Olaf van der Spek
Package: httping
Version: 1.5.3-1
Severity: wishlist

Dear Maintainer,

Could you show the run time, like normal ping does?

httping: 5848 connects, 5656 ok, 3.28% failed
ping: 4 packets transmitted, 4 received, 0% packet loss, time 3001ms

Greetings,

Olaf


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages httping depends on:
ii  libc62.13-35
ii  libssl1.0.0  1.0.1c-4
ii  openssl  1.0.1c-4

httping recommends no packages.

httping suggests no packages.

-- no debconf information


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



Bug#686196: httping: Segmentation fault (after slow responses?)

2012-08-30 Thread Olaf van der Spek
On Thu, Aug 30, 2012 at 1:16 PM, Nico Golde n...@debian.org wrote:
 I can also not reproduce the problem :/

Me neither, now. Must be a race condition. I'll update the report when
I know more.


-- 
Olaf


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



Bug#683746: rspamd packaging

2012-08-30 Thread Vsevolod Stakhov
Laszlo,

On 08/27/2012 11:50 PM, Laszlo Boszormenyi (GCS) wrote:
 On Mon, 2012-08-27 at 19:04 +0400, Vsevolod Stakhov wrote:
 I've fixed this issue and reuploaded the package to m.d.net.
  ... and I've uploaded your package to the official archives.
 
 Laszlo/GCS
 

Thank you very much! Can you also close bug #685697 please? (RFS:
rspamd/0.5.2-1 [ITP] -- fast spam filtering system)

-- 
Vsevolod Stakhov


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



Bug#679881: libcloud: new upstream releases

2012-08-30 Thread Nacho Barrientos
Hi,

On Mon, Jul 02, 2012 at 11:12:48AM +0200, Julien Cristau wrote:
 it seems the libcloud package hasn't been updated in a year, and there
 have been a few upstream releases in the mean time.  Are you still
 interested in this package?  Do you need help with its maintenance?

In case this helps someone:

http://cern.ch/nacho/debian/libcloud/0.11.1-0.1/libcloud_0.11.1-0.1.dsc

--
bye
  Nacho


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



Bug#684363: /usr/lib/volti/volti/alsactrl.py: crash on odd audio configuration

2012-08-30 Thread Alessio Treglia
severity 684363 serious
thanks

Hi,

I'm working on a patch to fix this issue.

Regards,

-- 
Alessio Treglia  | www.alessiotreglia.com
Debian Developer | ales...@debian.org
Ubuntu Core Developer| quadris...@ubuntu.com
0416 0004 A827 6E40 BB98 90FB E8A4 8AE5 311D 765A


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



Bug#686241: httping: Show run time

2012-08-30 Thread Nico Golde
Hi,
* Olaf van der Spek olafvds...@gmail.com [2012-08-30 15:17]:
 Could you show the run time, like normal ping does?
 
 httping: 5848 connects, 5656 ok, 3.28% failed
 ping: 4 packets transmitted, 4 received, 0% packet loss, time 3001ms

How about using time from your shell? This way not every command where someone 
wants to know the time has to implement it ;)

Cheers
Nico
-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0xA0A0


pgpFnl8kl0KVq.pgp
Description: PGP signature


Bug#686242: gnutls-serv does not listen on ipv6

2012-08-30 Thread Bernhard R. Link
Package: gnutls-bin
Version: 3.0.22-2
Severity: normal
Tags: ipv6 patch

On Linux with /proc/sys/net/ipv6/bindv6only == 0 (which is now the
default), gnutls-serv cannot listen on ipv6:

$ gnutls-serv -p 5544
Set static Diffie-Hellman parameters, consider --dhparams.
HTTP Server listening on IPv4 0.0.0.0 port 5544...done
HTTP Server listening on IPv6 :: port 5544...bind() failed: Address already in 
use

Attached patch fixes that:

$ ./gnutls-serv -p 
Set static Diffie-Hellman parameters, consider --dhparams.
HTTP Server listening on IPv4 0.0.0.0 port ...done
HTTP Server listening on IPv6 :: port ...done

The patch works both against 3.0.20-3 and 3.0.22-2.

-- System Information:
Debian Release: wheezy/sid
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnutls-bin depends on:
ii  libc62.13-35
ii  libgmp10 2:5.0.5+dfsg-2
ii  libgnutls28  3.0.22-2
ii  libhogweed2  2.4-2
ii  libidn11 1.25-2
ii  libnettle4   2.4-2
ii  libopts251:5.12-0.1
ii  libp11-kit0  0.12-3
ii  libtasn1-3   2.13-2
ii  zlib1g   1:1.2.7.dfsg-13

gnutls-bin recommends no packages.

gnutls-bin suggests no packages.

-- no debconf information
Author: Bernhard R. Link brl...@debian.org
Description: fix failure to listen on ipv6 addresses on Linux
 With /proc/sys/net/ipv6/bindv6only being 0 by default on Linux,
 gnutls-serv fails to listen on ipv6 as is first listens on ipv4.
 This patch sets the socket option to limit the ipv6 listening
 to ipv6 so it is no longer failing.

--- gnutls28-3.0.20.orig/src/serv.c
+++ gnutls28-3.0.20/src/serv.c
@@ -730,6 +730,17 @@ listen_socket (const char *name, int lis
   continue;
 }
 
+#ifdef HAVE_IPV6
+  if (ptr-ai_family == AF_INET6)
+{
+  yes = 1;
+  /* avoid listen on ipv6 addresses failing
+	   * because already listening on ipv4 addresses: */
+  setsockopt (s, IPPROTO_IPV6, IPV6_V6ONLY,
+  (const void *) yes, sizeof (yes));
+}
+#endif
+
   if (socktype == SOCK_STREAM)
 {
   yes = 1;


Bug#681194: PING debhelper #681194

2012-08-30 Thread Helmut Grohne
Hi Joey,

According to the release team (Julien Cristau on IRC), bug #681194 must
be fixed in time for wheezy. I attached a patch[1] almost a month ago.

Please do one of the following:
1) Upload a new version of debhelper including my patch.
2) Give me a reason for not including that particular patch into
   debhelper for wheezy.

Thanks

Helmut

[1] Message: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681194#10
Patch: 
http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=10;filename=debhelper.debdiff;att=1;bug=681194


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



Bug#686243: laptop-mode-tools: Speakers pop everytime laptop mode tools is started

2012-08-30 Thread David Smith
Package: laptop-mode-tools
Version: 1.61-1
Severity: normal

I've got a Compaq V4000T CTO laptop with Altec Lansing speakers built into the
laptop.  Everytime I start or stop laptop-mode-tools, the speakers on my laptop
make a loud pop sound.   I haven't been able to figure out what laptop-mode-
tools is trying to do as it doesn't seem to either enable or disable the
External Amplifier speaker control in ALSA that is associated with my laptop
speakers.



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-3-686-pae (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages laptop-mode-tools depends on:
ii  lsb-base4.1+Debian7
ii  psmisc  22.19-1
ii  util-linux  2.20.1-5.1

Versions of packages laptop-mode-tools recommends:
ii  ethtool 1:3.4.2-1
ii  hdparm  9.39-1+b1
ii  net-tools   1.60-24.1
ii  sdparm  1.07-1
ii  udev175-7
ii  wireless-tools  30~pre9-8

Versions of packages laptop-mode-tools suggests:
ii  acpid  1:2.0.16-1
ii  apmd   3.2.2-14
ii  hal0.5.14-8

-- no debconf information


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



Bug#678066: Proposal to simplify PowerPC CD/DVD boot options

2012-08-30 Thread Milan Kupcevic
On 08/30/2012 03:00 AM, Rick Thomas wrote:
 
 Thanks for the explanation.  It helps me understand what's going on here.
 
 What you say is, of course, technically correct.  The problem I'm having
 is that this is an about-face change from previous practice. 
 Previously, 32-bit was the default, and 64-bit was the specific option. 
 Now it's the reverse.
 
 Has there been a sea-change?  Are G5 machines now more common than G4s? 

I do not know about the exact prevalence. Newer non-Apple PowerPC
machines, i.e. YDL PowerStation (G5) and IBM POWER machines, do not load
the Apple specific stage one boot loader at all, and they are all 64-bit
machines. Thus the reasoning to make 64-bit option a default option.

 
 Regardless, I'm trying to write a comprehensive set of notes on booting
 Apple PowerMacs from USB drives, and it would be nice to have this part
 fully documented.
 
 Is there something I can tell people to do at the OF prompt that will
 load and run the stage-one boot loader?

I was not able to figure out how to do it from OF. Apple machines are
looking for the blessed file if 'C' key is held pressed during the
machine start-up. It is the official manufacturer prescribed way to
boot a Mac from a CD/DVD.

Booting Apple PowerPC machines form USB is undocumented and unsupported
by the manufacturer. Thus the troubles an inconsistencies.

 
 If it's not possible to run the stage-one boot loader, is there
 something I can tell them to do that will pass the appropriate arguments
 to yaboot to make it do the right thing for their machine?
 

You could, but the line is pretty long to type. If you are loading
yaboot on a 32-bit machine directly from OF, it is easier to just type
install32 on the boot prompt.


Milan


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



Bug#686218: cdimage.debian.org: booting powerpc netinst installer from USB-stick complains about type (Apple_HFS) of bootstrap partition (wants Apple_bootstrap)

2012-08-30 Thread Milan Kupcevic
On 08/30/2012 03:31 AM, Rick Thomas wrote:
 
 On Aug 29, 2012, at 11:30 PM, Milan Kupcevic wrote:
 
 On 08/29/2012 08:48 PM, Rick Thomas wrote:

 When booting the Debian netinst powerpc installer from a USB flash
 disk you may see a mesage
WARNING: Bootstrap partition type is wrong: Apple_HFS
  type should be: Apple_Bootstrap

 This does not occur when booting the same iso from a physical CD-ROM.

 Ignoring the warning does not seem to cause any problems.

 Any idea what makes it do that?  Can if be fixed?  Should it be
 documented if it can't be fixed?


 The warning message is likely coming from Open Firmware. It seems that
 it expects to find a properly partitioned hard drive connected to the
 USB connector you are trying to boot from. It does not expect to find a
 hybrid CD/DVD Apple_HFS partition there.

 M
 
 Is there a way to prepare the USB stick so it will look like what the OF
 is expecting?  Since it doesn't seem to do any harm, I suppose it's just
 a cosmetic bug, but it would be nice if it didn't complain.
 

We could explore it. We could format a USB stick the same way a bootable
hard drive is formatted in PowerPC Macs and see what happens.

M


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



Bug#686241: httping: Show run time

2012-08-30 Thread Olaf van der Spek
On Thu, Aug 30, 2012 at 3:27 PM, Nico Golde n...@debian.org wrote:
 Hi,
 * Olaf van der Spek olafvds...@gmail.com [2012-08-30 15:17]:
 Could you show the run time, like normal ping does?

 httping: 5848 connects, 5656 ok, 3.28% failed
 ping: 4 packets transmitted, 4 received, 0% packet loss, time 3001ms

 How about using time from your shell? This way not every command where someone
 wants to know the time has to implement it ;)

That'd work, hadn't though about it yet. It's less convienent though.
-- 
Olaf


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



Bug#642343: pybootchartgui: list index out of range bug while parsing

2012-08-30 Thread Riccardo Magliocchetti

Laurent,

Il 30/08/2012 13:30, Laurent Bigonville ha scritto:

Package: pybootchartgui
Followup-For: Bug #642343

Hi,

Any hope this will be fixed for the wheezy release?

This make pybootchartgui unsusable to me.


could you please upload the bootchart.tgz that breaks pybootchartgui 
somewhere? I'd like to verify it is indeed fixed.


thanks,
riccardo


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



Bug#686203: live-build: binary image hdd is broken

2012-08-30 Thread Ben Armstrong
On 08/30/2012 12:03 PM, George Bak wrote:
 I tried to reproduce this bug again.
 Strange, but I cannot reproduce it anymore.
 May be aptitude upgrade removed it?

I doubt it. There are so few dependencies of live-build. Most things happen 
inside the chroot which
is populated from a debootstrap, and that hasn't changed at all recently. It's 
more likely you had a
temporary problem with the archive mirror you were building against. As I said, 
the full log
would've had details that would tell us more conclusively. Otherwise, I don't 
care to speculate further.

CCing the bug in my reply, as your own failure to reproduce the bug is 
important information about
the status of the bug.

Ben


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



Bug#686244: unblock: libav/6:0.8.3-7

2012-08-30 Thread Reinhard Tartler
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package libav

The new package compresses with xz now (Bug #683895). The package
libav-regular-dbg is dropped as it does not necessary for transitional
purposes. Also, the fix for #679542 was incomplete, this package
revision fixes it for good.

unblock libav/6:0.8.3-7

Please find the debdiff attached. Thanks for your time.

Cheers,
Reinhard

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (SMP w/1 CPU core)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/debian/changelog b/debian/changelog
index cfba07c..6cf6c3a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+libav (6:0.8.3-7) unstable; urgency=low
+
+  [ Fabian Greffrath ]
+  * Fix generation of shlibs file not only for libavcodec*, but for all the
+other library packages as well. Really closes: #679542
+  * Use xz compression for binary packages, thanks Ansgar Burchardt
+(Closes: #683895).
+
+  [ Reinhard Tartler ]
+  * use EPOCH macro in SHLIBS_VERSION
+  * Drop the package 'libav-regular-dbg'. It was not included in squeeze.
+
+ -- Reinhard Tartler siret...@tauware.de  Sat, 25 Aug 2012 11:08:48 +0200
+
 libav (6:0.8.3-6) unstable; urgency=low
 
   * Clarify the changes in the 6:0.8.3-5 upload, as discussed in bug
diff --git a/debian/control b/debian/control
index 43c4f1a..799e8c4 100644
--- a/debian/control
+++ b/debian/control
@@ -123,11 +123,9 @@ Priority: extra
 Architecture: any
 Replaces:
  ffmpeg-dbg ( 6:0.8.3-5),
- libav-regular-dbg ( 6:0.8.3-5),
  libav-extra-dbg ( 6:0.8.3-5)
 Breaks:
  ffmpeg-dbg ( 6:0.8.3-5),
- libav-regular-dbg ( 6:0.8.3-5),
  libav-extra-dbg ( 6:0.8.3-5)
 Depends:
  ffmpeg (= ${binary:Version}),
@@ -148,19 +146,6 @@ Description: Debug symbols for Libav related packages
  Most people will not need this package. Please install it to produce useful
  stacktraces to help debugging the Libav library.
 
-Package: libav-regular-dbg
-Section: oldlibs
-Priority: extra
-Architecture: any
-Depends:
- libav-dbg,
- ${misc:Depends}
-Description: Debug symbols for Libav related packages (transitional package)
- Libav is a complete, cross-platform solution to decode, encode, record,
- convert and stream audio and video.
- .
- This package serves as a transitional package to libav-dbg.
-
 Package: libav-extra-dbg
 Section: oldlibs
 Priority: extra
diff --git a/debian/rules b/debian/rules
index fa5a4a0..697dd11 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,7 +4,7 @@ EPOCH=6:
 DEB_SOURCE := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p')
 DEB_VERSION := $(shell dpkg-parsechangelog | sed -n 's/^Version: //p')
 UPSTREAM_VERSION := $(shell echo $(DEB_VERSION) | sed -r 's/[^:]+://; s/-[^-]+$$//')
-SHLIBS_VERSION := 6:0.8.3-1~
+SHLIBS_VERSION := $(EPOCH)0.8.3-1~
 
 # these package do not build -extra variants
 LIB_PKGS := $(shell sed -nr 's/^Package:[[:space:]]*(lib(avutil|avdevice|avformat|avfilter|postproc|swscale)[0-9]+)[[:space:]]*$$/\1/p' debian/control)
@@ -172,7 +172,7 @@ binary-arch: build install
 	dh_strip --dbg-package=libav-dbg
 
 	for pkg in $(LIB_PKGS) $(LIB_EXTRA_PKGS); do \
-	dh_makeshlibs -p$$pkg -V$$pkg (= $(DEB_VERSION)); \
+	dh_makeshlibs -p$$pkg -V$$pkg (= $(SHLIBS_VERSION)); \
 	done
 	for pkg in $(LIB_PKGS2); do \
 	upkg=$$(echo $$pkg | sed -r 's/([0-9]+)$$/-extra-\1/'); \
@@ -182,7 +182,7 @@ binary-arch: build install
 	dh_installdeb
 	dh_gencontrol
 	dh_md5sums
-	dh_builddeb
+	dh_builddeb -- -Zxz
 
 binary: binary-indep binary-arch
 


Bug#686245: icedove: crashes when dragging attachments from mail viewer to mail composer

2012-08-30 Thread Christopher Huhn, GSI
Package: icedove
Version: 10.0.6-2
Severity: normal

Hi,

icedove reproducibly segfaults when an attachment is dragged from an email in 
the inbox (IMAP) to the composer window.
This applies to the attach button as well as the attachment box if there 
already are attachments.

Icedove 3.0.11 on Squeeze works as expected.

Cheers,
Christopher

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable'), (300, 'proposed-updates')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages icedove depends on:
ii  debianutils   4.3.2
ii  fontconfig2.9.0-7
ii  libasound21.0.25-4
ii  libatk1.0-0   2.4.0-2
ii  libc6 2.13-35
ii  libcairo2 1.12.2-2
ii  libdbus-1-3   1.6.0-1
ii  libdbus-glib-1-2  0.100-1
ii  libevent-2.0-52.0.19-stable-3
ii  libffi5   3.0.10-3
ii  libfontconfig12.9.0-7
ii  libfreetype6  2.4.9-1
ii  libgcc1   1:4.7.1-2
ii  libgdk-pixbuf2.0-02.26.1-1
ii  libglib2.0-0  2.32.3-1
ii  libgtk2.0-0   2.24.10-2
ii  libhunspell-1.3-0 1.3.2-4
ii  libjpeg8  8d-1
ii  libnspr4  2:4.9.1-1
ii  libnspr4-0d   2:4.9.1-1
ii  libnss3   2:3.13.5-1
ii  libnss3-1d2:3.13.5-1
ii  libpango1.0-0 1.30.0-1
ii  libpixman-1-0 0.26.0-3
ii  libsqlite3-0  3.7.13-1
ii  libstartup-notification0  0.12-1
ii  libstdc++64.7.1-2
ii  libvpx1   1.1.0-1
ii  libx11-6  2:1.5.0-1
ii  libxext6  2:1.3.1-2
ii  libxrender1   1:0.9.7-1
ii  libxt61:1.1.3-1
ii  psmisc22.19-1
ii  zlib1g1:1.2.7.dfsg-13

Versions of packages icedove recommends:
ii  myspell-de-de [myspell-dictionary]  20120607-1
ii  myspell-en-us [myspell-dictionary]  1:3.3.0-4

Versions of packages icedove suggests:
ii  fonts-lyx 2.0.3-3
ii  gconf-service 3.2.5-1+build1
ii  libgconf-2-4  3.2.5-1+build1
ii  libgssapi-krb5-2  1.10.1+dfsg-2
ii  libnotify40.7.5-1

-- debconf information:
* icedove/browser:  Manual


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



Bug#646684: git-dch: Add option to manage distribution field

2012-08-30 Thread Daniel Dehennin
Hello,

As my base “Move spawn_dch from gbp.scripts.dch to
gbp.deb.changelog.ChangeLog” is rebased on latest experimental, I update
this one too[1].

Regards.

The following changes since commit 9a730410930b3c5f7e99926657354dc3761a4471:

  Convert gbp.scripts.dch to gbp.deb.changelog.ChangeLog method calls. 
(2012-08-30 15:56:46 +0200)

are available in the git repository at:

  git://git.baby-gnu.net/git-buildpackage.git 
tags/dad/dch-configurable-changelog-entry/rebased/on-dad/move-spawn_dch-to-ChangeLog/rebased/on-c3c2778

for you to fetch changes up to b1102a0538206e656a1a9fe79e91bac948464391:

  Add urgency management. (2012-08-30 16:05:32 +0200)


Update base to rebased “moved spawn_dch to ChangeLog”


Daniel Dehennin (2):
  Add option to manage distribution fields for non snapshot mode.
  Add urgency management.

 gbp/scripts/dch.py|   29 --
 tests/11_test_dch_main.py |  141 +
 2 files changed, 166 insertions(+), 4 deletions(-)


Footnotes: 
[1]  
http://git.baby-gnu.net/gitweb/?p=git-buildpackage.git;a=shortlog;h=refs/tags/dad/dch-configurable-changelog-entry/rebased/on-dad/move-spawn_dch-to-ChangeLog/rebased/on-c3c2778

-- 
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x7A6FE2DF


pgpv80G9Oe8Rw.pgp
Description: PGP signature


Bug#669171: git-buildpackage: Create changelog if it does not exist

2012-08-30 Thread Daniel Dehennin
Hello,

As my base “Move spawn_dch from gbp.scripts.dch to
gbp.deb.changelog.ChangeLog” is rebased on latest experimental, I update
this one too[1].

Regards.

The following changes since commit 9a730410930b3c5f7e99926657354dc3761a4471:

  Convert gbp.scripts.dch to gbp.deb.changelog.ChangeLog method calls. 
(2012-08-30 15:56:46 +0200)

are available in the git repository at:

  git://git.baby-gnu.net/git-buildpackage.git 
tags/dad/create-inexistant-changelog/rebased/on-dad/move-spawn_dch-to-ChangeLog/rebased/on-c3c2778

for you to fetch changes up to a00bd536cfe1edcb2759b9c1dde5da57c2cb0189:

  Update gbp.scripts.dch to handle empty debian/changelog. (2012-08-30 16:07:44 
+0200)


Update base to rebased “moved spawn_dch to ChangeLog”


Daniel Dehennin (3):
  Do not fail on empty debian/changelog.
  The ChangeLog.add_section() must create the file if it does not exist.
  Update gbp.scripts.dch to handle empty debian/changelog.

 gbp/deb/changelog.py  |   59 +++---
 gbp/deb/git.py|2 +-
 gbp/scripts/dch.py|   39 ++-
 tests/12_test_create_changelog.py |  233 +
 tests/test_Changelog.py   |  103 
 5 files changed, 415 insertions(+), 21 deletions(-)
 create mode 100644 tests/12_test_create_changelog.py



Footnotes: 
[1]  
http://git.baby-gnu.net/gitweb/?p=git-buildpackage.git;a=shortlog;h=refs/tags/dad/create-inexistant-changelog/rebased/on-dad/move-spawn_dch-to-ChangeLog/rebased/on-c3c2778

-- 
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x7A6FE2DF


pgp2lSMHZ84Y3.pgp
Description: PGP signature


Bug#672954: git-buildpackage: Move spawn_dch from gbp.scripts.dch to gbp.deb.changelog.ChangeLog

2012-08-30 Thread Daniel Dehennin

I rebased my patches on the latest experimental.

The shortlog is online[1] and a pull request is following.

Regards.

The following changes since commit c3c2778e922ff070ad26ebbde2e41fb0d49ea9ea:

  Add debian/source/format parser (2012-08-26 18:07:20 +0200)

are available in the git repository at:

  git://git.baby-gnu.net/git-buildpackage.git 
tags/dad/move-spawn_dch-to-ChangeLog/rebased/on-c3c2778

for you to fetch changes up to 9a730410930b3c5f7e99926657354dc3761a4471:

  Convert gbp.scripts.dch to gbp.deb.changelog.ChangeLog method calls. 
(2012-08-30 15:56:46 +0200)


Rebased on latest experimental


Daniel Dehennin (3):
  Add guess_version_from_upstream() to gbp.deb.git.DebianGitRepository.
  Add spawn_dch(), add_changelog_entry() and add_changelog_section() to 
gbp.deb.changelog.ChangeLog.
  Convert gbp.scripts.dch to gbp.deb.changelog.ChangeLog method calls.

 gbp/deb/changelog.py   |   96 +
 gbp/deb/git.py |   17 +++
 gbp/scripts/dch.py |  142 
 ...anGitRepository_guess_version_from_upstream.py} |   13 +-
 tests/test_Changelog.py|   85 
 5 files changed, 224 insertions(+), 129 deletions(-)
 rename tests/{03_test_dch_guess_version.py = 
03_test_DebianGitRepository_guess_version_from_upstream.py} (75%)


Footnotes: 
[1]  
http://git.baby-gnu.net/gitweb/?p=git-buildpackage.git;a=shortlog;h=refs/tags/dad/move-spawn_dch-to-ChangeLog/rebased/on-c3c2778

-- 
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x7A6FE2DF


pgpGdz80e8mf2.pgp
Description: PGP signature


Bug#686246: gedit: parse error crashes gedit on start

2012-08-30 Thread Behrooz Amoozad
Package: gedit
Version: 3.4.2-1
Severity: normal
Tags: upstream

While editing an XML file, accidentally clicked on the file format option in
the status bar and some random file format selected, gedit crashed instantly,
and cannot open the file anymore.

Program output:
**
GtkSourceView:ERROR:gtksourcecontextengine.c:5487:update_syntax: assertion
failed: (state-context != NULL)
Aborted


The file contents:
--BEGIN---
?xml version=1.0 encoding=utf-8?
SqlConnectionInformation
 UserNamesa/UserName
 Passwordsa/Password
 Serverbehrooz-pc.local/Server
 ConnectionProtocolTcpIp/ConnectionProtocol
 ConnectionTimeout30/ConnectionTimeout
 ApplicationNameEsfand/ApplicationName
 EncryptConnectionfalse/EncryptConnection
 PacketSize4096/PacketSize
 UseIntegratedSecurityfalse/UseIntegratedSecurity
 DatabaseNameEsfand/DatabaseName
/SqlConnectionInformation
---END

plugins have no effct, double checked.



-- Package-specific info:
Active plugins:
  - 'codecomment'
  -  'terminal'
  -  'bookmarks'
  -  'modelines'
  -  'sort'
  -  'filebrowser'
  -  'changecase'
  -  'docinfo'
  -  'spell'
  -  'time'
  -  'textsize'
  -  'bracketcompletion'

No plugin installed in $HOME.

Module versions:
  - glib  2.32.3
  - gtk+  3.4.2
  - gtksourceview 
  - pygobject 
  - enchant   
  - iso-codes 3.38


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: armel
mipsel
i386

Kernel: Linux 3.2.0-3-rt-amd64 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gedit depends on:
ii  gedit-common   3.4.2-1
ii  gir1.2-atk-1.0 2.4.0-2
ii  gir1.2-freedesktop 1.32.1-1
ii  gir1.2-gdkpixbuf-2.0   2.26.1-1
ii  gir1.2-glib-2.01.32.1-1
ii  gir1.2-gtk-3.0 3.4.2-3
ii  gir1.2-gtksource-3.0   3.4.2-1
ii  gir1.2-pango-1.0   1.30.0-1
ii  gir1.2-peas-1.01.4.0-2
ii  gsettings-desktop-schemas  3.4.2-1
ii  iso-codes  3.38-1
ii  libatk1.0-02.4.0-2
ii  libc6  2.13-35
ii  libcairo-gobject2  1.12.2-2
ii  libcairo2  1.12.2-2
ii  libenchant1c2a 1.6.0-7
ii  libffi53.0.10-3
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libgirepository-1.0-1  1.32.1-1
ii  libglib2.0-0   2.32.3-1
ii  libgtk-3-0 3.4.2-3
ii  libgtksourceview-3.0-0 3.4.2-1
ii  libice62:1.0.8-2
ii  libpango1.0-0  1.30.0-1
ii  libpeas-1.0-0  1.4.0-2
ii  libsm6 2:1.2.1-2
ii  libx11-6   2:1.5.0-1
ii  libxml22.8.0+dfsg1-5
ii  python 2.7.3-2
ii  python-gi  3.2.2-1
ii  python-gi-cairo3.2.2-1
ii  python2.7  2.7.3-3

Versions of packages gedit recommends:
ii  yelp3.4.2-1
ii  zenity  3.4.0-2

Versions of packages gedit suggests:
ii  gedit-plugins  3.4.0-1

-- no debconf information


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



Bug#685864: Commande halt or halt -p and shutdown = reboot system. Cm :gigabyte z77x-ud5h

2012-08-30 Thread Jonathan Nieder
Hi,

novice wrote:

 kernel linux-image-3.5-trunk-amd64 and remove all nvidia, result is
 reboot. :(

Thanks!  Could you please attach full dmesg output from booting
this kernel as you did before trying to shut it down, as an
attachment?

It would give us useful context about your hardware, what method
the kernel had decided to use for shutdown, etc.

Full acpidump output (as another attachment) would be useful as
well.

Hope that helps,
Jonathan


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



Bug#685867: unblock: im-config/0.18

2012-08-30 Thread Aron Xu
As the proposer of such a change, I fully support this unblock request
as it is very important for users who don't have a _very_ fast machine.
Input method frameworks can wait for D-Bus for a give amount of time,
but it is definitely not an optimal solution to increase this time again
and again, as there aren't so many people who have been using SSD to
boost the loading of there desktop environment and there are examples
who are using slow machines and suffer from the very issue just around me.

We have been testing this patch since it has been written with our daily
use, and it appears to be good enough: solve the problem reliably and
haven't caused any problem so far. We have been providing decent input
support in Debian for quite some time, this change can make it even better.



-- 
Regards,
Aron Xu


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



Bug#686247: debdiff exits with wrong exit code (regression after security update)

2012-08-30 Thread Nikolaus Schulz
Package: devscripts
Version: 2.10.69+squeeze2
Severity: normal
Tags: patch

As of devscripts 2.10.69+squeeze2 in squeeze and (judging from the
changelog) 2.11.4 in sid, debdiff returns an exit code 1 when it finds
no differences between binary packages.

Note that this is a regression in squeeze, and breaks scripts relying on
the debdiff exit code.

Trivial patch is attached.

Nikolaus


PS. I'm forwarding this from the mailing list to the BTS so that it
doesn't get ignored.

-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
From 2a1bff244d89c6ff15cbe7553564eb45f90997ac Mon Sep 17 00:00:00 2001
From: Nikolaus Schulz sch...@macnetix.de
Date: Thu, 23 Aug 2012 21:46:14 +0200
Subject: [PATCH] Fix debdiff exit code (regression)

Commit 9cbe605 debdiff: fix CVE-2012-2012 [...] broke the exit code of
debdiff, at it made wdiff_control_files return 1 if wdiff found no
differences in the control files, which in turn made debdiff exit with an
exit code of 1.
---
 scripts/debdiff.pl |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/scripts/debdiff.pl b/scripts/debdiff.pl
index 7857836..20a0ced 100755
--- a/scripts/debdiff.pl
+++ b/scripts/debdiff.pl
@@ -1034,6 +1034,7 @@ sub wdiff_control_files($)
 		my $msg = ucfirst($cf) .  files$usepkgname: wdiff output;
 		print \n, $msg, \n, '-' x length $msg, \n;
 		print $wdiff;
+		$status = 1;
 	} else {
 		my @output;
 		@output = split /\n/, $wdiff;
@@ -1041,8 +1042,8 @@ sub wdiff_control_files($)
 		my $msg = ucfirst($cf) .  files$usepkgname: lines which differ (wdiff format);
 		print \n, $msg, \n, '-' x length $msg, \n;
 		print join(\n,@output), \n;
+		$status = 1;
 	}
-	$status = 1;
 	}
 }
 
-- 
1.7.2.5



  1   2   3   >