Bug#915611: dzen2 package is missing kittscanner.sh

2018-12-05 Thread Michael Stummvoll
Oups, please disregard the attached Patch. I opened an old BTS mail as
template and forgot to remove that.



Bug#915611: dzen2 package is missing kittscanner.sh

2018-12-05 Thread Michael Stummvoll
Package: dzen2
Version: 0.9.5~svn271-4+b1
Severity: minor

Dear Maintainers, 

I noticed that the doc file "README.kittscanner" refers to a
kittscanner.sh file which is a demonstration of some dzen2 features.
However this file is not part of the dzen2 debian package. To avoid
confusion, the kittscaner.sh file should either be added to the package
(probably along the documentation files) or the README.kittscanner file
should be removed from the docs.

Kind Regards,
Michael Stummvoll
diff --git a/conky-1.10.8/src/linux.cc b/patched/src/linux.cc
index ef39bd0..e4c9fe6 100644
--- a/conky-1.10.8/src/linux.cc
+++ b/patched/src/linux.cc
@@ -408,6 +408,10 @@ int update_net_stats(void)
 		return 0;
 	}
 
+	for (i2 = 0; i2 < MAX_NET_INTERFACES; i2++) {
+		netstats[i].up = false;
+	}
+
 	/* open file /proc/net/dev. If not something went wrong, clear all
 	 * network statistics */
 	if (!(net_dev_fp = open_file("/proc/net/dev", &rep))) {
@@ -686,6 +690,12 @@ int update_net_stats(void)
 	}
 #endif /* BUILD_IPV6 */
 
+	for (i = 0; i < MAX_NET_INTERFACES; i++) {
+		if(netstats[i].dev && !netstats[i].up) {
+			netstats[i].dev = 0;
+		}
+	}
+
 	first = 0;
 
 	fclose(net_dev_fp);


Bug#900001: Conky crashes eventually on linux setups where net interfaces change often

2018-05-24 Thread Michael Stummvoll
Package: conky
Version: 1.10.8-1
tags: patch

Dear Maintainers, 

Conky will keep an internal list of all seen network interfaces, which
is limited to 64. If the number of these interfaces exceeds this limit,
conky will crash.

While this limit is large enough for most usecases, on a system where
interfaces often appear and disappear (for example by starting
docker-images) conky will eventually run into that limit.

The supplied patch avoids that issue by removing old network interfaces
from the said internal list, once they disappear.

Kind Regards,
Michael Stummvoll
diff --git a/conky-1.10.8/src/linux.cc b/patched/src/linux.cc
index ef39bd0..e4c9fe6 100644
--- a/conky-1.10.8/src/linux.cc
+++ b/patched/src/linux.cc
@@ -408,6 +408,10 @@ int update_net_stats(void)
 		return 0;
 	}
 
+	for (i2 = 0; i2 < MAX_NET_INTERFACES; i2++) {
+		netstats[i].up = false;
+	}
+
 	/* open file /proc/net/dev. If not something went wrong, clear all
 	 * network statistics */
 	if (!(net_dev_fp = open_file("/proc/net/dev", &rep))) {
@@ -686,6 +690,12 @@ int update_net_stats(void)
 	}
 #endif /* BUILD_IPV6 */
 
+	for (i = 0; i < MAX_NET_INTERFACES; i++) {
+		if(netstats[i].dev && !netstats[i].up) {
+			netstats[i].dev = 0;
+		}
+	}
+
 	first = 0;
 
 	fclose(net_dev_fp);


Bug#857796: aborts after valid input (indent.c:446: content: Assertion `strlen(yytext) == 1' failed)

2018-04-22 Thread Michael Stummvoll
severity 857796 important
tags 857796 patch
thanks

The bug also seems to keep xmlindent from writing output into any file
using -o. Using -w empties the source file.

I attached a patch which fixes the issue.

Kind Regards,
Michael
439a440,441
> int len = strlen(yytext);
> if(!len) return;
443c445
< assert(strlen(yytext) == 1);
---
> assert(len == 1);


Bug#848895: Acknowledgement (Chromium freezes randomly)

2017-01-16 Thread Michael Stummvoll
> A shorter workaround:
> 
> $ pkill -f 'chromium --type=gpu-process'
> 

Can confirm, the workaround works for me too.

> It only happens to me on my desktop with debian sid. If it’s of any
> relevance, it has this video card:
>
> 03:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] 
> RV730 GL [FirePro V5700]

I too have a AMD Video card:

~$ lspci | grep VGA
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] 
Cypress XT [Radeon HD 5870]

Thanks,
Michael Stummvoll



Bug#848895: Acknowledgement (Chromium freezes randomly)

2016-12-20 Thread Michael Stummvoll
What I forgot to mention: 

I am using debian testing, but the bug also appears in the latest
version from the unstable or experimental repository for me.

Kind Regards,
Michael Stummvoll



Bug#848895: Chromium freezes randomly

2016-12-20 Thread Michael Stummvoll
Package: chromium
Version: 55.0.2883.75-2
Severity: important

Dear Maintainers, 

Chromium randomly freezes for me frequently. This means the chromium
window is completely unresponsive and the process can only be
terminated using the SIGTERM signal or the xkill command. I can't see
any patterns regarding the websites or runtimes where it happens, it
seems to be completely random to me. Sometimes the Window becomes
unresponsive while I am interacting with chromium, sometimes it seems
to happen while the browser window is in the background for a few
minutes.

Theres no output on the terminal when the freeze happens, however
chromium prints out these two lines on startup (not sure if this is
relevant)

> [21539:21539:1220/121304:ERROR:sandbox_linux.cc(343)] InitializeSandbox() 
> called with multiple threads in process gpu-process.
> libpng warning: iCCP: known incorrect sRGB profile

Sorry for not beeing able to provide more details. If you need more
informations please tell me how to obtain them and I will attach them.

Kind Regards,
Michael Stummvoll



Bug#763356:

2014-10-17 Thread Michael Stummvoll
> Hi, 
> 
> I am still encountering this bug after updating mysql-workbench and
> mysql-workbench-data to 6.2.3+dfsg-6 from unstable, while having the
> same console output as the initial reporter.
> 
> Kind Regards,
> Michael

Hi again,

Nevermind, was a mistake on my site. 
Sorry for the inconvenience.

Kind Regards,
Michael


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



Bug#763356:

2014-10-17 Thread Michael Stummvoll
Hi, 

I am still encountering this bug after updating mysql-workbench and
mysql-workbench-data to 6.2.3+dfsg-6 from unstable, while having the
same console output as the initial reporter.

Kind Regards,
Michael


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



Bug#761954: Please provide lsb-release for python 3

2014-09-17 Thread Michael Stummvoll
Package: lsb-release
Version: 4.1+Debian13

The lsb_release import is currently only available for python 2 but not
for python 3. This causes bug #760341 in pastebinit

Kind Regards,
Michael


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



Bug#687251: Close #687251 - search-page causes permanent 100% CPU load

2014-08-13 Thread Michael Stummvoll
reopen 687251 !
kthxbye

Hi,

I am still able to reproduce this bug. 

If this helps, the strace output spams this lines repeatly very fast when the
bug occours:

--- SNIP ---
clock_gettime(CLOCK_MONOTONIC, {35694, 64187117}) = 0
recvmsg(6, 0xbf875004, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
poll([{fd=5, events=POLLIN}, {fd=6, events=POLLIN}, {fd=3, events=POLLIN}], 3, 
0) = 0 (Timeout)
clock_gettime(CLOCK_MONOTONIC, {35694, 64260560}) = 0
recvmsg(6, 0xbf875004, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
poll([{fd=5, events=POLLIN}, {fd=6, events=POLLIN}, {fd=3, events=POLLIN}], 3, 
0) = 0 (Timeout)
clock_gettime(CLOCK_MONOTONIC, {35694, 64334123}) = 0
recvmsg(6, 0xbf875004, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
poll([{fd=5, events=POLLIN}, {fd=6, events=POLLIN}, {fd=3, events=POLLIN}], 3, 
0) = 0 (Timeout)
clock_gettime(CLOCK_MONOTONIC, {35694, 64407325}) = 0
recvmsg(6, 0xbf875004, 0)   = -1 EAGAIN (Resource temporarily 
unavailable)
poll([{fd=5, events=POLLIN}, {fd=6, events=POLLIN}, {fd=3,
events=POLLIN}], 3, 0) = 0 (Timeout)

--- SNAP ---


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



Bug#724902: openscad: new upstream version 2014.03

2014-04-01 Thread Michael Stummvoll
retitle 724902 openscad: new upstream version 2014.03
kthxbye

Hi,

there is a new openscad release: 2014.03

Any updates on this bug?

Kind Regards,
Michael


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



Bug#740811: xdotool seems not to be keyboard layout aware

2014-03-05 Thread Michael Stummvoll
Package: xdotool
Version: 1:3.20130111.1-3.1

Hi,

I am using german QWERTZ layout, and when I do "xdotool type z", an "y" reaches
the application.

This is an xev output while testing xdotool. The first three entries
are showing the output when sending the keypress with "xdotool type y"
to xev, the other when directly pressing my y-key in xev.

As you can see, the same keycode reaches the application in both cases,
but they are mapped to different keysyms

MappingNotify event, serial 142, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 8, count 248

KeyPress event, serial 142, synthetic NO, window 0x1c1,
root 0x260, subw 0x0, time 5916456, (76,126), root:(2000,132),
state 0x10, keycode 52 (keysym 0x7a, z), same_screen YES,
XLookupString gives 1 bytes: (7a) "z"
XmbLookupString gives 1 bytes: (7a) "z"
XFilterEvent returns: False

KeyRelease event, serial 143, synthetic NO, window 0x1c1,
root 0x260, subw 0x0, time 5916460, (76,126), root:(2000,132),
state 0x10, keycode 52 (keysym 0x7a, z), same_screen YES,
XLookupString gives 1 bytes: (7a) "z"
XFilterEvent returns: False

MotionNotify event, serial 143, synthetic NO, window 0x1c1,
root 0x260, subw 0x0, time 5916687, (75,126), root:(1999,132),
state 0x10, is_hint 0, same_screen YES

MappingNotify event, serial 143, synthetic NO, window 0x0,
request MappingKeyboard, first_keycode 8, count 248

KeyPress event, serial 143, synthetic NO, window 0x1c1,
root 0x260, subw 0x0, time 5917590, (75,126), root:(1999,132),
state 0x10, keycode 52 (keysym 0x79, y), same_screen YES,
XLookupString gives 1 bytes: (79) "y"
XmbLookupString gives 1 bytes: (79) "y"
XFilterEvent returns: False

KeyRelease event, serial 144, synthetic NO, window 0x1c1,
root 0x260, subw 0x0, time 5917646, (75,126), root:(1999,132),
state 0x10, keycode 52 (keysym 0x79, y), same_screen YES,
XLookupString gives 1 bytes: (79) "y"
XFilterEvent returns: False


Kind Regards,
Michael Stummvoll


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



Bug#731857: curl: bracket and brace expansion is broken

2013-12-10 Thread Michael Stummvoll
Package: curl
Version: 7.33.0-1
Severity: important

according the manpage, curl supports backet and brace expansion.

But when I try to run

> curl 'http://site.{one,two,three}.com'  

curl tries to download following sites:

> http://site.onethree
> http://site.twothree
> http://site.threethree  

and when trying to run

> curl 'http://site[0-9].example.com'  

It tries to download the following sites:
> http://site0http://site.exam
> http://site0http://site.exam  
> http://site0http://site.exam
> http://site0http://site.exam
> http://site0http://site.exam


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



Bug#731855: curl: bracket and brace expansion is broken

2013-12-10 Thread Michael Stummvoll
Package: curl
Version: 7.33.0-1
Severity: important

Dear Maintainers, 

according the curl manpage, it supports backet and brace expansion.

But when I try to run

> curl 'http://site.{one,two,three}.com'

curl tries to download following sites:

> http://site.onethree
> http://site.twothree
> http://site.threethree

and when trying to run

> curl 'http://site[0-9].example.com'

It tries to download the following sites:
> http://site0http://site.exam
> http://site1http://site.exam  
> http://site2http://site.exam
> http://site3http://site.exam
> http://site4http://site.exam
> http://site5http://site.exam  
> http://site6http://site.exam
> http://site7http://site.exam
> http://site8http://site.exam
> http://site9http://site.exam

so, both, bracket expansion and brace expansion are broken in the
current testing version.

Kind Regards,
Michael Stummvoll


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



Bug#731854: curl: bracket and brace expansion is broken

2013-12-10 Thread Michael Stummvoll
Package: curl
Version: 7.33.0-1
Severity: important

according the manpage, curl supports backet and brace expansion.

But when I try to run

> curl 'http://site.{one,two,three}.com'

curl tries to download following sites:

> http://site.onethree
> http://site.twothree
> http://site.threethree

and when trying to run

> curl 'http://site[0-9].example.com'

It tries to download the following sites:
> http://site0http://site.exam
> http://site0http://site.exam
http://site0http://site.exam


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



Bug#719814: Do not override user defined JAVA_HOME in the gradle start script

2013-08-15 Thread Michael Stummvoll
Package: gradle
Version: 1.4-2

Hi,

the start script for gradle overrides the JAVA_HOME environment if
there is set an user defined one

> export JAVA_HOME=/usr/lib/jvm/default-java

please just set it if its not already set.

> : ${JAVA_HOME:=/usr/lib/jvm/default-java}
> export JAVA_HOME

Kind Regards,
Michael


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



Bug#719066: typo in postinst script prevents dwb from installing as alternative

2013-08-08 Thread Michael Stummvoll
Package: dwb

Hi,

I noticed dwb does not installing itself as alternative. After taking a
look into its postinst script I found a little typo:

> if [ "$!" = "configure" ] || [ "$1" = "abort-upgrade" ]; then 

should be

> if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then 

($1 instead of $!)

Kind regards,
Michael


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



Bug#718960: gradle misses some dependencies

2013-08-07 Thread Michael Stummvoll
Package: gradle
Version: 1.4-1
severity: serious

Hi,

gradle refused to run on mine machine without the gson and bcpg
packages installed. So the package misses at least this two
dependencies.

Additional before submitting this bug I scanned /usr/share/gradle/lib
for symlinks and resolved their packages to get a full list of eventual
dependencies. However I am not sure if all of them are really needed,
since just a small part of them are already declared dependencies:

ant
ant-optional
bnd
checkstyle
groovy
ivy
junit4
libantlr-java
libasm4-java
libatinject-jsr330-api-java
libbcpg-java
libbcprov-java
libcodenarc-groovy-java
libcommons-cli-java
libcommons-codec-java
libcommons-collections3-java
libcommons-io-java
libcommons-lang-java
libconstantine-java
libdom4j-java
libecj-java
libgmetrics-groovy-java
libgoogle-gson-java
libgradle-core-java
libgradle-plugins-java
libguava-java
libhttpclient-java
libhttpcore-java
libjaffl-java
libjansi-java
libjarjar-java
libjaxen-java
libjcifs-java
libjcip-annotations-java
libjetty-extra-java
libjetty-java
libjffi-java
libjna-java
libjnr-posix-java
libjsch-java
libkryo-java
liblogback-java
libmaven-ant-tasks-java
libminlog-java
libnative-platform-java
libnekohtml-java
libplexus-containers1.5-java
libpolyglot-maven-java
libreflectasm-java
librhino-java
libservlet2.5-java
libslf4j-java
libxbean-java
libxerces2-java
libxml-commons-external-java
testng

kind regards,
Michael


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



Bug#703634: updating with lb config does unwanted expansion in configuration files

2013-03-21 Thread Michael Stummvoll
Package: live-build
Version: 3.0.1-1

Hi,

I just noticed that lb config on a existing configuration tree does
unexpected expansions:

$ lb config
[2013-03-21 16:54:46] lb config 
P: Considering defaults defined in /etc/live/build.conf
P: Creating config tree for a debian/i386 system
$ grep ^LB_ISO_VOLUME config/binary 
LB_ISO_VOLUME="Debian wheezy $(date +%Y%m%d-%H:%M)"
[0] /tmp/x$ lb config
[2013-03-21 16:55:39] lb config 
P: Considering defaults defined in /etc/live/build.conf
P: Updating config tree for a debian/i386 system
$ grep ^LB_ISO_VOLUME config/binary 
LB_ISO_VOLUME="Debian wheezy 20130321-16:55"

the second lb config let the $(date ..) in LB_ISO_VOLUME expand. Same
goes for $VERSION in LB_ISO_PREPARER.

Also in GZIP_OPTIONS in common there are two spaces before the second
call and one after. Thats just a minor thing but i think this is the
same reason.

kind regards,
Michael


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



Bug#439409: gparted: Gparted stupidly refuses to run if not root

2013-03-20 Thread Michael Stummvoll
severity 439409 important
thanks

Hi,

this report may is older. However I think thats a problem too. There a
scenarios I want to use partition tools without root. The first one is
the floppy-case as Stefan said. Another scenario is when I want to
create or partition an image which exists as file instead of an
physical disk. In this case there is no need to be root. Forcing the
user to switch to root for a task where it isn't needed is not only a
stupidly but also a serious security issue. This is why I set the issue
to "important"

Kind Regards,
Michael


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



Bug#693032: reprepro repositories doesn't have an archive name for aptitude

2012-11-12 Thread Michael Stummvoll
package: reprepro

Hi,

my format string for my aptitude package list contains an %t which
prints out the archivename from which a package come. (like "testing",
"unstable" or "experimental")

On my selfbuild repository aptitude prints out an "" as archive
name. 

I am not sure where this archive name is set. I Tried to add an
"Archive: " entry in the Relases-Files manually but this doesn't work.

my Distributions file:

> Origin: Michael Stummvoll
> Label: Test
> Codename: wheezy
> Architectures: i386
> Components: test
> Description: test description
> SignWith: BCB17C5B

Kind Regards,
Michael


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



Bug#638290: /etc/init.d/nodm restart does not reliably restart nodm

2012-11-08 Thread Michael Stummvoll
tags 638290 +patch
kthxbye

Hi,

this bug can easily be fixed by adding for example an "-R 5" to the
start-stop-daemon in the stop) case on the init script (patch attached)

This bug is realy annoying and exists since over an year. The last 3
updates of the packages were NMUs so I think the maintainer(s) is/are
not active currently.

I am hoping this patch gets into the nodm-package soon either via NMU
or by the maintainers.

Kind Regards,
Michael63c63
< 		start-stop-daemon --stop --pidfile ${PIDFILE} --oknodo
---
> 		start-stop-daemon --stop --pidfile ${PIDFILE} --oknodo -R 5


Bug#671497: gparted does not run in Wheezy with kde

2012-09-28 Thread Michael Stummvoll
retitle 671497 gparted does not run in Wheezy with kde
tag 671497 moreinfo
kthxbye

Please provide more info. What happens when you try to run gparted?

Kind regards,
Michael


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



Bug#687251: search-page causes permanent 100% CPU load

2012-09-11 Thread Michael Stummvoll
package: yelp
Severity: important

Opening an search page in yelp and leaving it causes an permanent 100%
CPU load for me:

- open yelp from terminal
- type something in the search bar (e.g. "test")
- klick on a link or on the back button besides the search bar to leave
  the search page
- yelp has 100% CPU load

found on debian testing with yelp 3.4.2

Kind Regards,
Michael


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



Bug#686942: cannot run yelp from serval gnome-applications

2012-09-07 Thread Michael Stummvoll
Hi,

> Is gvfs installed?

No, but I just installed it and it still does not work. Do I have to do
something more?

Kind Regards,
Michael


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



Bug#686942: cannot run yelp from serval gnome-applications

2012-09-07 Thread Michael Stummvoll
package: yelp,eog,epiphany-browser,evince,ghex,gparted,gucharmap,meld
Severity: important

Hi Maintainers,

I am not sure where it belongs and nobody could tell me, so I decided to send
this bug report against all packages in question. Hoping somebody with more 
expirence with gnome, yelp or whatever can reassign it to the right place

I cannot run yelp from serval gnome applications. I just get the error
message: "There was an error displaying help: Operation not supported".

There are no further informations provided to stdout or stderr, so I am
afraid I can't provide an more detailed error description.

I am using debian testing with yelp 3.4.2-1
I am not using a complete gnome environment, but have installed a few
gnome applications.

I tested the following applications where the error-message occours
- eog
- epiphany
- evince
- ghex
- gucharmap

also, when opening help from "meld" nothing happens.
only opening help from "gparted" works for me

besides that, opening an help-windows with yelp from console works:
> yelp /usr/share/gnome/help/evince/C/index.page

Kind Regards,
Michael


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



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#623194: Please upgrade fvwm to version 2.6.5

2012-08-24 Thread Michael Stummvoll
retitle 623194 Please upgrade fvwm to version 2.6.5
kthxbye

Hi,

The current version auf fvwm is 2.6.5. versions prior 2.6 are outdatet
and not longer supported by the fvwm devs, so it should be upgraded.

CC'ing the maintainer cause he doesn't seem to be attented to this
thread.

Kind Regards,
Michael Stummvoll


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



Bug#685624: fortune-files have trailing newlines

2012-08-22 Thread Michael Stummvoll
package: fortunes-de

Dear Maintainer,

some of the fortune-de files have a trailing newline.

> mst@eddie:/tmp/x$ fortune loewe 
> Wie fängt man einen Löwen in der Wüste?
> 5. physikalische Methode: Petard, H.: A Contribution to the
>Mathematical Theory of Big Game Hunting. American Math Monthly 45,
>446-447. 1938
> 
> Mit einer halbdurchlässigen Membran, die alles außer Löwen
> durchläßt, siebt man die Wüste durch.
>
> mst@eddie:~$

"huhn" has 12 trailing newlines:

> mst@eddie:~$ fortune huhn
> Warum überquerte das Huhn die Straße?
> Bill Clinton:
>  Ich war zu keiner Zeit mit diesem Huhn allein.
>
>
>
>
>
>
>
>
>
>
>
>
> mst@eddie:/usr/share/games/fortunes/de$ 

Kind Regards,
Michael


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



Bug#684262: Trayicons in Stalonetray are randomly bigger

2012-08-08 Thread Michael Stummvoll
package: stalonetray

Dear Maintainers, 

sometimes new created trayicons by applications are randomly bigger
than the others in stalonetray. When I exit and restart this application
it has the normal sized icon than in most cases, so the bug is not
surely reproducable all times.

However, to ease the reproducion of the bug I attached an simple
c-application which does nothing but creating a couple trayicons using
gtk. You have to compile it against gtk:

> gcc $(pkg-config --cflags --libs gtk+-2.0) tray.c

after invoking this, i see the most icons normal-sized in stalone-tray
but some double sized.

I am using stalonetray 0.8.1-1 within fvwm 2.5.30-ds1.1 both in debian
testing.

Kind regards,
Michael#include 

int main(int argc, char **argv) {
gtk_init(&argc, &argv);
GtkStatusIcon *tray_icon;
int i, j;

	for(i=0; i<50; i++) {
	tray_icon = gtk_status_icon_new();
	gtk_status_icon_set_from_icon_name(tray_icon, "up");
	gtk_status_icon_set_visible(tray_icon, TRUE);
}

gtk_main();
return 0;
}


Bug#682704: written dumps shouldn't be world-readable by default

2012-07-25 Thread Michael Stummvoll
Hi Romain,

Am Wed, 25 Jul 2012 15:59:21 +0200
schrieb Romain Francoise :
> ... if your umask is not strict enough, yes. You can use a umask of
> 077 to prevent this.

Hi,

thanks for your reply. I think you are right with your points. I didn't
saw the old bugreport. Thanks for pointing me there.

But may at least a note anywhere in the docs would be good to clearify,
that dump-files are world-readable in an default environment and
admins, who uses tcpdump, should keep that in mind and consider
changing the umask or so.

Kind Regards,
Michael


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



Bug#682704: written dumps shouldn't be world-readable by default

2012-07-24 Thread Michael Stummvoll
Package: tcpdump
Severity: wishlist
Tags: security

Hi maintainers,

files created with tcpdump (tcpdump -w file.pcap) are world readable by
default. (mode 644)

I think, due this files may contain sensitive data (and the possibility
for this isn't very small imho), newly created dumpfiles shouldn't be
world-readable by default. (mode 600)

kind regards,
Michael


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



Bug#680364: Please add a way to use local aptitude

2012-07-05 Thread Michael Stummvoll
Hello,

> Hi,
> 
> you might write your own command handler and use the "Type" 
> configuration statement in a host group:

Thanks for giving that point, i will look at this

> We are aware that the config/host file format is not flexible enough 
> (you can only have one Type per group) - an upcoming version of 
> apt-dater will improve the format.

at first, it would be a great benefit if this would be documented
anywhere ;)

neither the manpage nor /usr/share/doc/apt-dater says anything about
"Type"

Kind Regards, 
Michael



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



Bug#680364: Please add a way to use local aptitude

2012-07-05 Thread Michael Stummvoll
Package: apt-dater
Severity: wishlist

Hi,

when i want to manage my local machine with apt-dater i have to setup
an local sshd, an update-user, sudo and the sudoers file

However, i think it would be a nice feature if there would be a
feature, that i can just add a local aptitude host, which bypasses ssh.
Some users don't have an sshd on their working machines for security
reasons.

Kind Regards,
Michael



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



Bug#676217: epiphany-browser should depend on gnome-icon-theme-symbolic

2012-06-05 Thread Michael Stummvoll
Package: epiphany-browser
Severity: normal

Dear Maintainer,

the epiphany-browser package should depend on gnome-icon-theme-symbolic
cause it uses some resources from there. epiphany-browser misses some
images if this package is not installed.

the package gnome-icon-theme-symbolic depends on gnome-icon-theme, so a
change of this dependency would also do.

Kind regards,
Michael



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



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

2012-06-05 Thread Michael Stummvoll
Package: gedit
Severity: normal

Dear Maintainer,

the gedit package should depend on gnome-icon-theme-symbolic
cause it uses some resources from there. gedit misses some images if this 
package is not installed. For example the forward/backward buttons in
the search field wich appears with "ctrl+f".

the package gnome-icon-theme-symbolic depends on gnome-icon-theme, so a
change of this dependency would also do.

Kind regards,
Michael



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



Bug#676163: confusing naming of the packages epiphany and epiphany-browser

2012-06-05 Thread Michael Stummvoll
reopen 676163
thanks

Hi there,

> > thats very confusing.
> 
>   You have explained it to me right away and then tell me it's
> confusing... is that a joke or what?

That I can explain the situation does not indicate that it is not
confusing. Furthermore i usually doesnt use the BTS for sharing jokes

> Closed, as there's nothing to do.

I don't think so.

Kind Regards,
Michael


signature.asc
Description: PGP signature


Bug#676163: confusing naming of the packages epiphany and epiphany-browser

2012-06-05 Thread Michael Stummvoll
Package: epiphany,epiphany-browser
Severity: normal

Dear Maintainers,

the package "epiphany" provides the binary "epiphany-game"
tha binary "epiphany" is provided by the package "epiphany-browser"

thats very confusing. May the Maintainers of the packages should find a
way to clearify this.

kind regards,
Michael Stummvoll



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



Bug#667796: slock: Please package slock 1.0 (CVE-2012-1620)

2012-04-09 Thread Michael Stummvoll

Hi, sorry for the late reply.

I don't have much time at the moment for suckless-tools, currently its 
maintained in a git repository on collab-maint. However, currently it 
hangs cause git-buildpackage does not support multiple origin tars, what 
we have on suckless tools, so it needs some more work, where i haven't 
the time for atm. If somebody want, he can feel free to find a way to 
fix that.


Kind regards,
Michael



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



Bug#665877: ncurses-term: /usr/share/terminfo/s/st-256color confilcted with file from suckless-tools

2012-03-28 Thread Michael Stummvoll
Am Tue, 27 Mar 2012 17:25:26 +0200
schrieb Sven Joachim :

> I see.  Do you have an ETA when suckless-tools might be uploaded?  I
> would not like to declare a "Breaks" relationship on suckless-tools as
> long as no fixed version is in the archive.

I didn't had much time for working on the package last days, and there
are still some litte thinks to do on it before uploading. the
new suckless-tools package is actually maintained on collab-maint and I
have an DD who intents to upload the package when its done.

May I can work on it the next days or at the weekend, but I can't
promise.

Kind Regards,
Michael



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



Bug#665877: ncurses-term: /usr/share/terminfo/s/st-256color confilcted with file from suckless-tools

2012-03-27 Thread Michael Stummvoll
Hi,

> Michael (as the prospective suckless-tools maintainer), what is your
> opinion on that?  I noticed that the version on mentors.debian.net has
> already dropped the terminfo entry, but that may have been
> unintentional.

this file was part of the terminal emulator 'st', which is maintained in
stterm and so will be dropped from suckless-tools in the next version.

Kind regards,
Michael



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



Bug#664733: crm114: Annoying Synopsis

2012-03-20 Thread Michael Stummvoll
Package: crm114
Version: 20100106-1
Severity: normal

Dear Maintainer,

the SYNOPSIS section in the manpage of crm is annoying. The description of 
the options should be in a separate section.

kind regards,
Michael Stummvoll

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages crm114 depends on:
ii  debconf [debconf-2.0]  1.5.41
ii  libc6  2.13-27
ii  libtre50.8.0-2

Versions of packages crm114 recommends:
ii  mew-bin  1:6.3-3

crm114 suggests no packages.

-- 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#658857: bsdmainutils: [cal] Inconsistent month formatting with -3

2012-02-06 Thread Michael Stummvoll
Package: bsdmainutils
Version: 9.0.1
Severity: normal

Dear Maintainer,

I just noticed that cal has inconsistent output formatting while using -3. 
Sometimes it prints the year on the top line, sometimes before the month.

for example:

$ cal -3 2 2012
2012
  January   February   March  
Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  
 1  2  3  4  5  6  71  2  3  4   1  2  3  
 8  9 10 11 12 13 14   5  6  7  8  9 10 11   4  5  6  7  8  9 10  
15 16 17 18 19 20 21  12 13 14 15 16 17 18  11 12 13 14 15 16 17  
22 23 24 25 26 27 28  19 20 21 22 23 24 25  18 19 20 21 22 23 24  
29 30 31  26 27 28 29   25 26 27 28 29 30 31  
  
$ cal -3 3 2012
   February 2012   March 2012April 2012   
Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  Su Mo Tu We Th Fr Sa  
  1  2  3  4   1  2  3   1  2  3  4  5  6  7  
 5  6  7  8  9 10 11   4  5  6  7  8  9 10   8  9 10 11 12 13 14  
12 13 14 15 16 17 18  11 12 13 14 15 16 17  15 16 17 18 19 20 21  
19 20 21 22 23 24 25  18 19 20 21 22 23 24  22 23 24 25 26 27 28  
26 27 28 29   25 26 27 28 29 30 31  29 30 

In the stable-release of bsdmainutils this bug does not appear.

Kind Regards,
Michael
-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages bsdmainutils depends on:
ii  bsdutils 1:2.20.1-1.2
ii  debianutils  4.1
ii  libc62.13-24
ii  libncurses5  5.9-4
ii  libtinfo55.9-4

bsdmainutils recommends no packages.

Versions of packages bsdmainutils suggests:
ii  cpp   4:4.6.2-4
ii  vacation  
ii  wamerican [wordlist]  7.1-1
ii  whois 5.0.14
ii  witalian [wordlist]   1.7.5
ii  wngerman [wordlist]   20110609-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#606148: removing of st from suckless-tools

2012-01-24 Thread Michael Stummvoll
reassign 606148 stterm
reassign 606149 stterm
reassign 606150 stterm
fixed 606148
fixed 606150
tags 642307 pending
kthxbye

Hi,
i am going to remove st from suckless-tools with the next version, instead, it 
recommends stterm now.
Thus, i am reassigning st-relatet bugs to this package. However, 606148 and 
606150 seems to be fixed
in the current version of the stterm package, thus I mark them fixed

Kind Regards,
Michael



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



Bug#627662:

2012-01-24 Thread Michael Stummvoll
oups, sorry for the confusing subject in the last mail. I planned another thing 
first while writing this mail.

Kind Regards,
Michael



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



Bug#627662: stterm

2012-01-24 Thread Michael Stummvoll
tags 627662 pending
kthxbye

sprop and lsx will be included in the next version of suckless-tools

Thanks,
Michael



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



Bug#647090: Review for the package on mentors.debian.net

2012-01-21 Thread Michael Stummvoll
owner 647090 !
kthxbye

Hi Aron and Bernhard,

thanks for your feedback. I forgot to own the ITA-Bug, but will fix
this with this mail.

>> 1.As you have updated the package to use debhelper compatible
>> level 8, the use of source format 3.0 is highly recommended. What
>> you need to do is: $ mkdir debian/source $ echo "3.0 (quilt)" >
>> debian/source/format Then review your patches against the build
>> system (*/config.[mk,h]) and make them maintained using quilt in
>> debian/patches/ .

Yes, i will do that. With the switching to quilt-source-format i also
will use multiple tarballs then.

>> 2.Can you explain why usr/bin/slock should be setuid? I can guess
>> that it's an screen locker so it may need the privilege to do its
>> job, but since it is a potential security hole please document it
>> in README.Debian for it.
> slock seems to not support PAM thus only be quite limited in what 
> authentication it supports. Perhaps it might be better to remove
> that then...

Yeah, slock checks the password against shadow, thats because it needs
root. May it is possible to patch PAM-Support into slock.



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



Bug#623194: Please upgrade fvwm to version 2.6.3

2012-01-20 Thread Michael Stummvoll
retitle 623194 Please upgrade fvwm to version 2.6.3
kthxbye

Hi,

It would be great to see fvwm 2.6.3 in debian. Please Upgrade

Kind Regards,
Michael Stummvoll





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



Bug#610478: suckless-tools_39-1 pending

2012-01-19 Thread Michael Stummvoll
tags 378175 pending
tags 610478 pending
tags 636012 pending
tags 636030 pending
tags 650573 pending
tags 650574 pending
kthxbye

I fixed the bugs above in version 39-1 which has RFS-State now

Further Informations can be found here: 
http://mentors.debian.net/package/suckless-tools

anyone also can get the package by

dget -x 
http://mentors.debian.net/debian/pool/main/s/suckless-tools/suckless-tools_39-1.dsc

Regards,
Michael Stummvoll



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



Bug#647090: Status Check

2012-01-18 Thread Michael Stummvoll

Hi,

whats the current state of the suckless-tools package? Is it still orphaned?

Atm it doesn't seem that much happens to this package.
The last upload was on Dec'10. And there are some easy-to-fix-bugs in 
the BTS with patch where didn't happens something too.


However, i want to get in Debian as Maintainer and therefore i'm looking 
for a package to adopt at the moment
suckless-tools would be a good candidate since i am using the tools 
within fvwm.


Regards,
Michael



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



Bug#655712: ITP: template -- environment variable expander | simple template tool

2012-01-13 Thread Michael Stummvoll

On 13.01.2012 16:14, Gergely Nagy wrote:
(By the way, you can abuse /usr/share/dh-exec/dh-exec-subst-env, which 
does just that, and is part of the dh-exec package, if you don't want 
to put it in a script in ~/bin or something. ;) 
ah, thanks. Thats what I looked for. So, the tool isn't too simple, as 
some people said, just its function is still provided by another tool 
(where nobody could point me yet), so i think the ITP can be closed


Greetings,
Michael




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



Bug#655712: ITP: template -- environment variable expander | simple template tool

2012-01-13 Thread Michael Stummvoll

On 13.01.2012 16:00, Neil Williams wrote:

The point about sed is that sed can substitute whatever you like into
whatever you like - printenv with grep and sed gets the value, then
another grep for the lines that matter and pass those lines to sed. It
really isn't hard.
ok, please can you give me an example sed-command which replaces ${.*} 
with the according environment-variables? I couldn't find this yet and 
nobody could point me to it yet. The only way to do this I seeing atm is 
to iterate through $(printenv) and replace all listed 
environment-variables in the stream using sed. But this way seams very 
"bloat" to me.
And when i write such a tool for myself, why does it matter if i do this 
with python, perl, ruby, php, c or something else?


Regards,
Michael



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



Bug#655712: ITP: template -- environment variable expander | simple template tool

2012-01-13 Thread Michael Stummvoll

On 13.01.2012 15:36, Neil Williams wrote:

$ printenv|grep GDM_LANG|sed -e 's/GDM_LANG=//'

#!/bin/sh
GLANG=`printenv|grep GDM_LANG|sed -e 's/GDM_LANG=//'`
echo $GLANG

Why is that hard?

did you really read and understand what I wrote in the package 
description and the upstream-website?


I want a tool, that reads (e.g from a file) content like

"foo ${BAR} blup"

and replaces ${BAR} here with the environment variable BAR

Regards,
Michael






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



Bug#655712: ITP: template -- environment variable expander | simple template tool

2012-01-13 Thread Michael Stummvoll

On 13.01.2012 15:05, Steve McIntyre wrote:
* I don't really see how this program is more useful than a very 
simple shell (or perl, or python, or ...) loop to do the same thing. 
I looked a while for a simple shell loop which does exactly this. But 
could'nt find one, so I wrote this tool.
All bash-scripts I found used some tricky eval-hacks, which i wanted to 
avoid.


Regards,
Michael




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



Bug#655712: ITP: template -- environment variable expander | simple template tool

2012-01-13 Thread Michael Stummvoll

On 13.01.2012 14:52, Steve McIntyre wrote:
Why do we need this? Does it need to be a separate package for a very 
simple utility program? 
do you think it has better chances to get in a package like moreutils 
instead of as own?




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



Bug#655712: ITP: template -- environment variable expander | simple template tool

2012-01-13 Thread Michael Stummvoll

On 13.01.2012 14:35, Neil Williams wrote:
printenv? Maybe printenv combined with sed or grep ... What is the 
advantage? 

expanding variables in a file is very tricky using bash only.
And I don't really see your point. What did you mean with "printenv 
combined with sed"? Listing all environment-variables and replacing them 
in the stream using sed? I think this way is laborious.


Regards,
Michael



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



Bug#655712: ITP: template -- environment variable expander | simple template tool

2012-01-13 Thread Michael Stummvoll

On 13.01.2012 13:51, Sandro Tosi wrote:

On Fri, Jan 13, 2012 at 13:40, Michael Stummvoll  wrote:

* Package name: template

It's probably a too generic name

Ok, you may be right. Would something like template-tool be better?

Regards,
Michael



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



Bug#655712: ITP: template -- environment variable expander | simple template tool

2012-01-13 Thread Michael Stummvoll
Package: wnpp
Severity: wishlist
Owner: Michael Stummvoll 

I'm planning to upload this new package through a sponsor

* Package name: template
  Version : 0.1
  Upstream Author : Michael Stummvoll 
* URL : http://stuff.stummi.org/template.html
* License : GPL
  Programming Lang: C
  Description : environment variable expander and simple template tool

template is a very simple tool that reads from stdin, expands variables in the 
form ${FOO} to its according environment variables and prints this to stdout.



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



Bug#652622: openssh-server: Match block should allow PrintMotd and PrintLastlog

2011-12-19 Thread Michael Stummvoll
Package: openssh-server
Version: 1:5.9p1-2
Followup-For: Bug #652622

Hi, 
I just added two more options which should be possible in match group

Greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages openssh-server depends on:
ii  adduser3.113
ii  debconf [debconf-2.0]  1.5.41
ii  dpkg   1.16.1.2
ii  libc6  2.13-21
ii  libcomerr2 1.42-1
ii  libgssapi-krb5-2   1.10+dfsg~alpha1-6
ii  libkrb5-3  1.10+dfsg~alpha1-6
ii  libpam-modules 1.1.3-6
ii  libpam-runtime 1.1.3-6
ii  libpam0g   1.1.3-6
ii  libselinux12.1.0-4
ii  libssl1.0.01.0.0e-3
ii  libwrap0   7.6.q-21
ii  lsb-base   3.2-28
ii  openssh-client 1:5.9p1-2
ii  procps 1:3.2.8-11
ii  zlib1g 1:1.2.3.4.dfsg-3

Versions of packages openssh-server recommends:
ii  openssh-blacklist0.4.1
ii  openssh-blacklist-extra  0.4.1
ii  xauth1:1.0.6-1

Versions of packages openssh-server suggests:
pn  molly-guard   
pn  monkeysphere  
pn  rssh  2.3.3-1
pn  ssh-askpass   1:1.2.4.1-9
pn  ufw   

-- Configuration Files:
/etc/pam.d/sshd changed [not included]

-- debconf information excluded
Index: openssh-5.9p1/servconf.c
===
--- openssh-5.9p1.orig/servconf.c	2011-12-19 16:01:57.617991503 +0100
+++ openssh-5.9p1/servconf.c	2011-12-19 16:05:22.131650938 +0100
@@ -422,8 +422,8 @@
 	{ "checkmail", sDeprecated, SSHCFG_GLOBAL },
 	{ "listenaddress", sListenAddress, SSHCFG_GLOBAL },
 	{ "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
-	{ "printmotd", sPrintMotd, SSHCFG_GLOBAL },
-	{ "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
+	{ "printmotd", sPrintMotd, SSHCFG_ALL },
+	{ "printlastlog", sPrintLastLog, SSHCFG_ALL },
 	{ "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
 	{ "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
 	{ "x11forwarding", sX11Forwarding, SSHCFG_ALL },
@@ -433,7 +433,7 @@
 	{ "strictmodes", sStrictModes, SSHCFG_GLOBAL },
 	{ "permitblacklistedkeys", sPermitBlacklistedKeys, SSHCFG_GLOBAL },
 	{ "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
-	{ "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL },
+	{ "permituserenvironment", sPermitUserEnvironment, SSHCFG_ALL },
 	{ "uselogin", sUseLogin, SSHCFG_GLOBAL },
 	{ "compression", sCompression, SSHCFG_GLOBAL },
 	{ "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL },
@@ -1542,11 +1542,15 @@
 	M_CP_INTOPT(zero_knowledge_password_authentication);
 	M_CP_INTOPT(permit_root_login);
 	M_CP_INTOPT(permit_empty_passwd);
+	M_CP_INTOPT(permit_user_env);
+	M_CP_INTOPT(permit_tun);
 
 	M_CP_INTOPT(allow_tcp_forwarding);
 	M_CP_INTOPT(allow_agent_forwarding);
 	M_CP_INTOPT(permit_tun);
 	M_CP_INTOPT(gateway_ports);
+	M_CP_INTOPT(print_motd);
+	M_CP_INTOPT(print_lastlog);
 	M_CP_INTOPT(x11_display_offset);
 	M_CP_INTOPT(x11_forwarding);
 	M_CP_INTOPT(x11_use_localhost);


Bug#652622: openssh-server: Match block should allow PrintMotd and PrintLastlog

2011-12-19 Thread Michael Stummvoll
Package: openssh-server
Version: 1:5.9p1-2
Severity: normal
Tags: upstream patch

Hi,

PrintMotd and PrintLastlog is not allowed within a Match block.
Due I needed it for me and didn't see any sense to disallow this 
configuration directive, I saw this as a bug and wrote a patch to fix it. 
This bug also affects the upstream release.

Stable release is also affected, the patch should be applicable also there.

(PS: May other configuration directives are also affected by such a senseless
restriction, but I didn't check them all yet and before wasting time with
something like this I want to see if this patch has a chance to come in.)

Greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages openssh-server depends on:
ii  adduser3.113   
ii  debconf [debconf-2.0]  1.5.41  
ii  dpkg   1.16.1.2
ii  libc6  2.13-21 
ii  libcomerr2 1.42-1  
ii  libgssapi-krb5-2   1.9.1+dfsg-3
ii  libkrb5-3  1.9.1+dfsg-3
ii  libpam-modules 1.1.3-6 
ii  libpam-runtime 1.1.3-6 
ii  libpam0g   1.1.3-6 
ii  libselinux12.1.0-4 
ii  libssl1.0.01.0.0e-3
ii  libwrap0   7.6.q-21
ii  lsb-base   3.2-28  
ii  openssh-client 1:5.9p1-2   
ii  procps 1:3.2.8-11  
ii  zlib1g 1:1.2.3.4.dfsg-3

Versions of packages openssh-server recommends:
ii  openssh-blacklist0.4.1
ii  openssh-blacklist-extra  0.4.1
ii  xauth1:1.0.6-1

Versions of packages openssh-server suggests:
pn  molly-guard
pn  monkeysphere   
pn  rssh  2.3.3-1
pn  ssh-askpass   1:1.2.4.1-9
pn  ufw

-- Configuration Files:
/etc/pam.d/sshd changed [not included]

-- debconf information excluded
Index: openssh-5.9p1/servconf.c
===
--- openssh-5.9p1.orig/servconf.c	2011-12-19 11:32:10.644602022 +0100
+++ openssh-5.9p1/servconf.c	2011-12-19 11:32:18.952708519 +0100
@@ -422,8 +422,8 @@
 	{ "checkmail", sDeprecated, SSHCFG_GLOBAL },
 	{ "listenaddress", sListenAddress, SSHCFG_GLOBAL },
 	{ "addressfamily", sAddressFamily, SSHCFG_GLOBAL },
-	{ "printmotd", sPrintMotd, SSHCFG_GLOBAL },
-	{ "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
+	{ "printmotd", sPrintMotd, SSHCFG_ALL },
+	{ "printlastlog", sPrintLastLog, SSHCFG_ALL },
 	{ "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
 	{ "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
 	{ "x11forwarding", sX11Forwarding, SSHCFG_ALL },
@@ -1547,6 +1547,8 @@
 	M_CP_INTOPT(allow_agent_forwarding);
 	M_CP_INTOPT(permit_tun);
 	M_CP_INTOPT(gateway_ports);
+	M_CP_INTOPT(print_motd);
+	M_CP_INTOPT(print_lastlog);
 	M_CP_INTOPT(x11_display_offset);
 	M_CP_INTOPT(x11_forwarding);
 	M_CP_INTOPT(x11_use_localhost);


Bug#651510: gpw does not generate full length passwords sometimes

2011-12-09 Thread Michael Stummvoll
Package: gpw
Version: 0.0.19940601-8.1
Severity: normal
Tags: patch

Hi,

in some (seldom) cases gpw does not generate a password with the length the 
user declared.

an example to see this problem:
> gpw 100 10 | sed '/^.\{10\}$/d'
prints out ~20 lines which are shorter than 10 chars.
The reason is, that there are bigrams whithout trigrams (qs in this case), 
which can not get completed.

I resolved this problem by checking the bi- and trigrams in loadtris.c before
writing and exclude bi- and trigrams, which cannot be continued.

PS: I am not sure of the servity of this bug. On the one side, this bug 
appears very seldom and shouldn't affect a typical user, but on the
other site, may a script uses this to generate a password (for example an
initial user password for a website or so), and when the bug appears here
a 2 or 3 char password could be generated instead a secure long password.
In this case, the bug could be security relevant.

Greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages gpw depends on:
ii  libc6  2.13-21

gpw recommends no packages.

gpw suggests no packages.

-- no debconf information
--- gpw-0.0.19940601/loadtris.c	2001-05-30 19:26:16.0 +0200
+++ a/gpw-0.0.19940601/loadtris.c	2011-12-09 10:38:15.350335891 +0100
@@ -20,6 +20,28 @@
 
 FILE *fp;
 
+void checktris() {
+	int c1, c2, c3;
+	for(c1=0; c1<26; c1++) {
+		for(c2=0; c2<26; c2++) {
+			int hastris = 0;
+			for(c3=0; c3<26; c3++) {
+if(tris[c1][c2][c3]) {
+	hastris = 1;
+	break;
+}
+			}
+			if(!hastris) {/* if [c1][c2] has no tris... */
+duos[c1][c2] = 0; 		/* ... do not use the duo ...*/
+for(c3=0; c3<26; c3++) {	/* ... and don't use tris */
+	sigma-=tris[c3][c1][c2];/* which are ending */
+	tris[c3][c1][c2] = 0;	/* on [c1][c2] ...*/
+}
+			}
+		}
+	}
+}
+
 int main (int argc, char ** argv) {
 	char buf[100];
 	int j;
@@ -89,6 +111,7 @@
 	}			/* for argno */
 
 	if (nfiles) {/* find any input? */
+		checktris();
 		printf ("/* BEGIN INCLUDE FILE .. trigram.h */\n"); /* Multics style */
 		printf ("\n");
 		printf ("const long sigma = %ld;\n", sigma);


Bug#650616: netbase: please provide /etc/network/interfaces.d/

2011-12-01 Thread Michael Stummvoll
Package: netbase
Version: 4.47
Severity: wishlist

Hi,

I think it would be usefull if there a would be a /etc/network/interfaces.d/
directory, which is included in configuration an behaves like in 
/etc/network/interfaces. This would make handling interface-specific 
configurations easier. For example in backups, or if you want to edit/create
this configurations with external tools.

Greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages netbase depends on:
ii  initscripts  2.88dsf-13.12
ii  lsb-base 3.2-28   

Versions of packages netbase recommends:
ii  ifupdown  0.7~alpha5+really0.6.16

netbase 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#385069: moreutils: Please add "dirempty" command

2011-11-25 Thread Michael Stummvoll
Package: moreutils
Version: 0.45
Followup-For: Bug #385069

Hi,
cause there didn't happen something to this topic for some years i just made a 
beginning. :)

Greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages moreutils depends on:
ii  libc62.13-21 
ii  libipc-run-perl  0.90-1  
ii  perl 5.14.2-5

moreutils recommends no packages.

Versions of packages moreutils suggests:
ii  libtime-duration-perl
ii  libtimedate-perl   1.2000-1

-- no debconf information
/*
 *  dirempty.c - checks if a dir is empty
 *
 *  Copyright ©  2011  Michael Stummvoll
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  version 2 as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 *
 */

#include 
#include 
#include 
#include 

void usage() {
printf("Usage: dirempty \n");
printf("  returncodes:\n");
printf("0 - dir is empty\n");
printf("1 - dir is not empty\n");
printf("2 - wrong usage\n");
printf("3 - error opening directory\n");
exit(2);
}

int main (int argc, char *argv[]) {
int notempty = 0;
DIR *dp;
struct dirent *ep;
char * dirname;

if(argc == 2) {
dirname = argv[1];
} else {
usage();
}

dp = opendir (dirname);
if (dp != NULL) {
while (ep = readdir (dp)) {
if(
strcmp(ep->d_name, ".") != 0 &&
strcmp(ep->d_name, "..") != 0 
) {
notempty = 1;
}
}
closedir (dp);
} else {
perror ("Couldn't open the directory");
return 3;
}

return notempty;
}


Bug#623197: sponge: please add --append option

2011-11-24 Thread Michael Stummvoll
Package: moreutils
Version: 0.45
Tags: patch
Followup-For: Bug #623197

Hi,

I needed this feature for myself, so wrote a little patch.

Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages moreutils depends on:
ii  libc62.13-21 
ii  libipc-run-perl  0.90-1  
ii  perl 5.14.2-5

moreutils recommends no packages.

Versions of packages moreutils suggests:
ii  libtime-duration-perl
ii  libtimedate-perl   1.2000-1

-- no debconf information
45c45
<   printf("sponge : soak up all input from stdin and write it to 
\n");
---
>   printf("sponge [-a] : soak up all input from stdin and write it 
> to \n");
274a275,285
>   int append=0;
>   
>   if (argc == 3) {
>   if(strcmp(argv[1], "-a") == 0) {
>   append=1;
>   argc--;
>   argv++;
>   } else {
>   usage();
>   }
>   }
338a350
>   !append &&
347c359
<   outfile = fopen(outname, "w");
---
>   outfile = fopen(outname, append?"a":"w");


Bug#649857: aptitude: Allow CLI install action flags in TUI

2011-11-24 Thread Michael Stummvoll
Package: aptitude

Version: 0.6.4-1.2
Severity: wishlist

Hi,
It would be a nice feature to allow the cli install action flags (_, -, +) on 
aptitude. May this could be made in the search-feature: if a action-char is 
append, aptitude does not jump to the next match but applies this action to all 
matches.

Greetings,
Michael

-- Package-specific info:
aptitude 0.6.4 compiled at Oct 29 2011 21:12:20
Compiler: g++ 4.6.2
Compiled against:
  apt version 4.10.1
  NCurses version 5.9
  libsigc++ version: 2.2.9
  Ept support enabled.
  Gtk+ support disabled.
  Qt support disabled.

Current library versions:
  NCurses version: ncurses 5.9.20110404
  cwidget version: 0.5.16
  Apt version: 4.10.1
linux-gate.so.1 =>  (0xb76fc000)
libapt-pkg.so.4.10 => /usr/lib/libapt-pkg.so.4.10 (0xb75cc000)
libncursesw.so.5 => /lib/i386-linux-gnu/libncursesw.so.5 (0xb759a000)
libtinfo.so.5 => /lib/i386-linux-gnu/libtinfo.so.5 (0xb7579000)
libsigc-2.0.so.0 => /usr/lib/libsigc-2.0.so.0 (0xb7574000)
libcwidget.so.3 => /usr/lib/libcwidget.so.3 (0xb7471000)
libept.so.1 => /usr/lib/libept.so.1 (0xb7419000)
libxapian.so.22 => /usr/lib/sse2/libxapian.so.22 (0xb721c000)
libz.so.1 => /usr/lib/libz.so.1 (0xb7207000)
libsqlite3.so.0 => /usr/lib/libsqlite3.so.0 (0xb7161000)
libboost_iostreams.so.1.46.1 => /usr/lib/libboost_iostreams.so.1.46.1 
(0xb714a000)
libpthread.so.0 => /lib/i386-linux-gnu/i686/cmov/libpthread.so.0 
(0xb7131000)
libstdc++.so.6 => /usr/lib/i386-linux-gnu/libstdc++.so.6 (0xb7048000)
libm.so.6 => /lib/i386-linux-gnu/i686/cmov/libm.so.6 (0xb7021000)
libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xb7004000)
libc.so.6 => /lib/i386-linux-gnu/i686/cmov/libc.so.6 (0xb6eaa000)
libutil.so.1 => /lib/i386-linux-gnu/i686/cmov/libutil.so.1 (0xb6ea6000)
libdl.so.2 => /lib/i386-linux-gnu/i686/cmov/libdl.so.2 (0xb6ea2000)
libuuid.so.1 => /lib/libuuid.so.1 (0xb6e9c000)
libbz2.so.1.0 => /lib/i386-linux-gnu/libbz2.so.1.0 (0xb6e8c000)
librt.so.1 => /lib/i386-linux-gnu/i686/cmov/librt.so.1 (0xb6e83000)
/lib/ld-linux.so.2 (0xb76fd000)
Terminal: screen
$DISPLAY is set.
`which aptitude`: /usr/bin/aptitude
aptitude version information:

aptitude linkage:

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages aptitude depends on:
ii  apt [libapt-pkg4.10]  0.8.15.9
ii  libboost-iostreams1.46.1  1.46.1-7+b1 
ii  libc6 2.13-21 
ii  libcwidget3   0.5.16-3.1  
ii  libept1   1.0.5   
ii  libgcc1   1:4.6.2-4   
ii  libncursesw5  5.9-4   
ii  libsigc++-2.0-0c2a2.2.9-1 
ii  libsqlite3-0  3.7.9-2 
ii  libstdc++64.6.2-4 
ii  libtinfo5 5.9-4   
ii  libxapian22   1.2.7-1 
ii  zlib1g1:1.2.3.4.dfsg-3

Versions of packages aptitude recommends:
ii  apt-xapian-index0.44  
ii  aptitude-doc-en | aptitude-doc  
ii  libparse-debianchangelog-perl   
ii  sensible-utils  0.0.6 

Versions of packages aptitude suggests:
ii  debtags  
ii  tasksel  3.07  

-- 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#643638: netcat6: nc6 does not close connection correctly with -l --continuous --exec

2011-11-04 Thread Michael Stummvoll
Package: netcat6
Version: 1.0-8
Followup-For: Bug #643638

Hi,

the bug also appears in the upstream-version, so I forwarded it to the 
maintainers now.

Greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages netcat6 depends on:
ii  libc6  2.13-21

netcat6 recommends no packages.

netcat6 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#647591: vim: encryption set with :X is not applied by :x if there are no other changes

2011-11-04 Thread Michael Stummvoll
Package: vim
Version: 2:7.3.333-1
Severity: important

Hi,
when I open a textfile with vim and set or change the encryption with :X and 
leave vim then with :x without doing any other changes, the encryption is not
applied to this file. When I change something and leave with :x or leave with
:wq without changes, the encryption is applied. 

I don't think this is the expected behavior.
I marked this bug as "important" because it could be a security issue if a 
user assumes, that his file is encrypted without rechecking that.

Greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages vim depends on:
ii  libacl1  2.2.51-3   
ii  libc62.13-21
ii  libgpm2  1.20.4-4   
ii  libselinux1  2.1.0-1
ii  libtinfo55.9-2  
ii  vim-common   2:7.3.333-1
ii  vim-runtime  2:7.3.333-1

vim recommends no packages.

Versions of packages vim suggests:
ii  ctags  
ii  vim-doc
ii  vim-scripts  20110813

-- 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#228380: ifupdown: Should be able to specify favoured DHCP client

2011-10-20 Thread Michael Stummvoll
Package: ifupdown
Version: 0.7~alpha5+really0.6.15
Followup-For: Bug #228380

Hi,

i have simmilar problem. I want ifupdown to use dhclient, but without the -v 
parameter. I wasn't sure to file a new bug or add this to this one. 
I think, ifupdown shoule be able to specify favoured DHCP client AND override
its default behavior.

Greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages ifupdown depends on:
ii  libc6  2.13-21  
ii  lsb-base   3.2-28   
ii  net-tools  1.60-24.1

ifupdown recommends no packages.

Versions of packages ifupdown suggests:
ii  iproute  20110629-1 
ii  isc-dhcp-client  4.1.1-P1-17
ii  ppp  2.4.5-5

-- 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#643638: netcat6: nc6 does not close connection correctly with -l --continuous --exec

2011-09-28 Thread Michael Stummvoll
Package: netcat6
Version: 1.0-8
Severity: normal

Hi,

when i invoke netcat6 with 

> nc6 --exec "echo foo" -l --continuous -p 1234 -q0:0

my expected behavior is a server, which listens for connections, prints out 
"foo" to each client connects and closes the connection then (but not exit
nc6).

When i invoke that without --continuous the connection is closed after 
exceuting, as expected.

With --continuous the server allows multiple connections, as expected, but 
as side-effect, connections won't be closed after executing the command. 
I think, this behaivor is a bug and should be fixed.

Greetings,
Michael



*** Please consider answering these questions, where appropiate ***

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

*** End of the template - remove these lines ***


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages netcat6 depends on:
ii  libc6  2.13-21

netcat6 recommends no packages.

netcat6 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#643339: most: build fails on configure-step (couldn't find slang.h)

2011-09-27 Thread Michael Stummvoll
Package: most
Version: 5.0.0a-2
Severity: serious
Justification: fails to build from source (but built successfully in the past)

Hi,
Building most with apt-get source, apt-get build-dep and dpkg-buildpackage 
fails on configure step:

> 
> checking for Terminfo... yes
> checking for the slang library and header files ... no
> configure: error: unable to find the slang library and header file slang.h
> make: *** [build-stamp] Error 1
> dpkg-buildpackage: error: debian/rules build gave error exit status 2

libslang2-dev is installed and /usr/include/slang.h does exists here

greetings,
Michael

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (700, 'testing'), (650, 'unstable'), (600, 'experimental')
Architecture: i386 (i686)

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

Versions of packages most depends on:
ii  libc6  2.13-21
ii  libslang2  2.2.4-3

most recommends no packages.

most 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#620953: live-build: "configured" start-stop-daemon remains after cleaning and rebuilding binary

2011-04-05 Thread Michael Stummvoll

Package: live-build
Version: 2.0.12-2
Severity: normal

After cleaning the binarys with lb clean --binary and rebuilding with lb 
binary the image
has a "configured" start-stop-daemon. This means, that 
/sbin/start-stop-deamon does nothing

and the orginal script is in /usr/sbin/start-stop-deamon.orig

reproducable with a new image from scratch:
lb config && lb build && lb clean --binary && lb binary

tested on the debian stable (squeeze)

Michael Stummvoll

-- Package-specific info:

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

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

Versions of packages live-build depends on:
ii  debootstrap  1.0.26+squeeze1 Bootstrap a basic Debian system

Versions of packages live-build recommends:
ii  cpio  2.11-4 GNU cpio -- a program to 
manage ar
ii  gnu-fdisk 1.2.4-3Linux fdisk replacement 
based on l


Versions of packages live-build suggests:
pn  dosfstools  (no description available)
pn  genisoimage  (no description available)
ii  grub  0.97-64GRand Unified Bootloader 
(dummy pa

pn  memtest86+ | memtest86  (no description available)
pn  mtools  (no description available)
pn  parted  (no description available)
pn  squashfs-tools | genext2fs |  (no description available)
pn  sudo | fakeroot  (no description available)
pn  uuid-runtime  (no description available)
pn  win32-loader  (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#610590: openssh: support for host:port format

2011-01-20 Thread Michael Stummvoll
Package: openssh-client
Version: 1:5.5p1-6
Severity: wishlist


It would be nice if the openssh-client can support the host:port format. 
Allmost each client for any protocoll supports this. That means, that ssh can 
parse a "user@host:port" parameter and scp a "user@host:port/file".

(Yes, i know, that i can specify the port with -p and -P, however the support 
for the format descriped above as additional feature would be a nice thing too)

Greetings,
Michael Stummvoll

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

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

Versions of packages openssh-client depends on:
ii  adduser  3.112+nmu2  add and remove users and groups
ii  debconf [debconf-2.0 1.5.36  Debian configuration management sy
ii  dpkg 1.15.8.8Debian package management system
ii  libc62.11.2-7Embedded GNU C Library: Shared lib
ii  libedit2 2.11-20080614-2 BSD editline and history libraries
ii  libgssapi-krb5-2 1.8.3+dfsg-4MIT Kerberos runtime libraries - k
ii  libssl0.9.8  0.9.8o-4SSL shared libraries
ii  passwd   1:4.1.4.2+svn3283-2 change and administer password and
ii  zlib1g   1:1.2.3.4.dfsg-3compression library - runtime

Versions of packages openssh-client recommends:
ii  openssh-blacklist 0.4.1  list of default blacklisted OpenSS
ii  openssh-blacklist-extra   0.4.1  list of non-default blacklisted Op
ii  xauth 1:1.0.4-1  X authentication utility

Versions of packages openssh-client suggests:
pn  keychain   (no description available)
pn  libpam-ssh (no description available)
pn  ssh-askpass(no description available)

-- Configuration Files:
/etc/ssh/ssh_config changed:
Host *
GatewayPorts yes
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no


-- 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#590455: date: %s should mention "timestamp" in manpage

2010-07-26 Thread Michael Stummvoll
Package: coreutils
Version: 6.10-6
Severity: wishlist

Hello,

the parameter "%s" currently is descriptioned as followed in the manpage:
   %s seconds since 1970-01-01 00:00:00 UTC

In other words: it shows the unix-timestamp.

I am thinking, the man-page should mention this explicit for %s.
If somebody wants to know how to show the unix-timestamp with date he 
probably will grep the manpage for "timestamp" or so. So it would be good when
this word appears somewhere there.

greetings,
Michael

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

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

Versions of packages coreutils depends on:
ii  libacl1 2.2.47-2 Access control list shared library
ii  libc6   2.7-18lenny4 GNU C Library: Shared libraries
ii  libselinux1 2.0.65-5 SELinux shared libraries

coreutils recommends no packages.

coreutils 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#576679: file: -L/--derefence is marked as default in the "--help"-message, what is not exactly correct

2010-04-06 Thread Michael Stummvoll
Package: file
Version: 4.26-1
Severity: minor

when I type "find --help" i will get amongst other lines follow: 
> -L, --dereference  follow symlinks (default)
that is not correct in this way. That implicates that this is independent of 
any enviroment-variables. But the man-page says:
>This is the default if the environment variable POSIXLY_CORRECT is defined.
for -L and
>This is the default if the environment variable POSIXLY_CORRECT is not 
>defined.
for -h

So either which row has the "(default)"-declaration should also be dependent
on the POSIX_CORRECT-variable or the declaration should be more informative. 
Maybe (default if POSIX_CORRECT is [not] defined) after both rows.

sincerely yours,
Michael Stummvoll

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

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

Versions of packages file depends on:
ii  libc6  2.7-18lenny2  GNU C Library: Shared libraries
ii  libmagic1  4.26-1File type determination library us
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

file recommends no packages.

file 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#570497: gedit messages false editconflicts on editing files which are mounted by cifs

2010-02-19 Thread Michael Stummvoll
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Josselin Mouette schrieb:
> Le vendredi 19 février 2010 à 11:02 +0100, Michael Stummvoll a
> écrit :
>> When I edit a file that is in a dir mounted over cifs, gedit
>> messages a editconflict every times i want to save this file.
>
> Sorry but I can’t reproduce that.
>
> Are you sure the client and the server have their time synchronized
> with NTP? Otherwise you can’t use a network filesystem between
> both.
>
> Cheers,
yes, it was my failure, sorry.
The problem was caused by an timedifference of about 3 minutes between
my client the smb-server.

Michael Stummvoll
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkt+jXwACgkQ+Tu6A279W0AeUwCfc2TSJgRlOH8VQNc26gkH8OYw
ZzEAoI+72s9AMqHpgT3ohKXN/XojontM
=pxtH
-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#570497: gedit messages false editconflicts on editing files which are mounted by cifs

2010-02-19 Thread Michael Stummvoll
Package: gedit
Version: 2.22.3-1+lenny1
Severity: normal


When I edit a file that is in a dir mounted over cifs, gedit messages a
editconflict every times i want to save this file.

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

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

Versions of packages gedit depends on:
ii  gconf2  2.22.0-1 GNOME configuration database syste
ii  gedit-common2.22.3-1+lenny1  official text editor of the GNOME 
ii  iso-codes   3.5.1-1  ISO language, territory, currency,
ii  libatk1.0-0 1.22.0-1 The ATK accessibility toolkit
ii  libattr11:2.4.43-2   Extended attribute shared library
ii  libc6   2.7-18lenny2 GNU C Library: Shared libraries
ii  libcairo2   1.6.4-7  The Cairo 2D vector graphics libra
ii  libenchant1c2a  1.4.2-3.3a wrapper library for various spel
ii  libgconf2-4 2.22.0-1 GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.16.6-3 The GLib library of C routines
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomeui-02.20.1.1-2   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.22.0-5   GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.12.12-1~lenny1 The GTK+ graphical user interface 
ii  libgtksourceview2.0 2.2.2-1  shared libraries for the GTK+ synt
ii  libpango1.0-0   1.20.5-5 Layout and rendering of internatio
ii  libx11-62:1.1.5-2X11 client-side library
ii  libxml2 2.6.32.dfsg-5+lenny1 GNOME XML library
ii  python  2.5.2-3  An interactive high-level object-o
ii  python-glade2   2.12.1-6 GTK+ bindings: Glade support
ii  python-gobject  2.14.2-2 Python bindings for the GObject li
ii  python-gtk2 2.12.1-6 Python bindings for the GTK+ widge
ii  python-gtksourcevie 2.2.0-1+b1   Python bindings for the GtkSourceV
ii  python-support  0.8.4lenny1  automated rebuilding support for P
ii  python2.5   2.5.2-15+lenny1  An interactive high-level object-o
ii  rarian-compat [scro 0.8.1-1  Rarian is a documentation meta-dat

Versions of packages gedit recommends:
ii  libgnomevfs2-bin  1:2.22.0-5 GNOME Virtual File System (support
ii  python-gnome2 2.22.0-1   Python bindings for the GNOME desk
ii  zenity2.22.1-2   Display graphical dialog boxes fro

gedit 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