Bug#1012342: python3-tenacity installs unused dependency python3-pbr

2022-06-05 Thread Kjell Braden
Package: python3-tenacity
Version: 6.2.0-4
Severity: minor

python-tenacity does not use pbr since version 5.1.0. python3-pbr should
be dropped from its dependencies.


-- System Information:
Debian Release: 11.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.10.0-13-amd64 (SMP w/2 CPU threads)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/bash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages python3-tenacity depends on:
ii  python3  3.9.2-3
ii  python3-pbr  5.5.0-2
ii  python3-six  1.16.0-2

python3-tenacity recommends no packages.

Versions of packages python3-tenacity suggests:
pn  python-tenacity-doc  

-- no debconf information



Bug#876145: python-pip: pip install --system as non-root shouldn't default --ignore-installed

2018-01-03 Thread Kjell Braden
On Wed, 3 Jan 2018 17:02:14 +0100 Kjell Braden <k@brdn.eu> wrote:>
Also note that the virtualenv detection fails on python3 venv, breaking
> the --system-site-packages option.

Disregard that, this can be worked around by invoking "python3 -m pip"
instead of "pip3", and is a different issue.



Bug#876145: python-pip: pip install --system as non-root shouldn't default --ignore-installed

2018-01-03 Thread Kjell Braden
On Mon, 18 Sep 2017 21:21:31 -0400 Peter Amstutz
 wrote:
> When running "pip install --system" as a non-root user, the change in
> set_user_default.patch forces the --ignore-installed flag to be enabled.
> 
> This has the effect of breaking pip for use cases that install packages as 
> non-
> root but don't use --user or virtualenv.

This also means that if I install a package with --user it will have any
dependencies installed in the user's home, even if they already exist in
the system directories (i.e. installed through apt) and satisfy all
requirements - with no possible workaround, other than reverting this patch.

Also note that the virtualenv detection fails on python3 venv, breaking
the --system-site-packages option.

Even more reason (see #830892) to drop the patch in question.



Bug#768218: netcfg segfaults when passed four or more nameservers

2014-11-06 Thread Kjell Braden

On 06.11.2014 03:22, Cyril Brulebois wrote:

Yeah, that looks like a good idea, thanks. Did you actually test it?


 No. What would be the simplest way to test this? Rebuild and patch the 
netcfg binary into the initrd?



BTW: It looks like ntpservers have a max value as well but array
boundary checks seem present (dhcp.c's netcfg_dhcp).


 I did a quick check for other offending loops but didn't find any. I 
didn't search thoroughly though.


Cheers




signature.asc
Description: OpenPGP digital signature


Bug#768218: netcfg segfaults when passed four or more nameservers

2014-11-06 Thread Kjell Braden

On 06.11.2014 12:50, Cyril Brulebois wrote:

Kjell Braden aff...@pentabarf.de (2014-11-06):

I've been using the xen netboot images for amd64.


I've included a patched netcfg in xen netboot images for amd64, built
against jessie and against sid (the kernel ABI changed recently), they
are available at:
   https://people.debian.org/~kibi/di-netcfg/xen-netboot-amd64-jessie/
   https://people.debian.org/~kibi/di-netcfg/xen-netboot-amd64-sid/

Please keep the bug in copy when replying with your test results?

Thanks already!

Mraw,
KiBi.



 Tested on jessie xen netboot amd64: netcfg indeed crashes on the 
current archive image, while it succeeds on your patched image.


Cheers



signature.asc
Description: OpenPGP digital signature


Bug#768218: netcfg segfaults when passed four or more nameservers

2014-11-05 Thread Kjell Braden

Package: netcfg
Version: 1.108+deb7u2
Tags: patch

When passed more than three nameservers, netcfg can segfaults in 
nm_write_static_ipvX due to a missing array bounds check. The attached 
patch (against current git master) should fix the issue.


Cheers
From f729be186bf9b99c3ee7b0f05543f18d79737cfc Mon Sep 17 00:00:00 2001
From: Kjell Braden aff...@pentabarf.de
Date: Thu, 6 Nov 2014 02:05:28 +0100
Subject: [PATCH] fix missing bounds check on nameserver array iteration

---
 nm-conf.c |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/nm-conf.c b/nm-conf.c
index 09b2fb4..db42c2c 100644
--- a/nm-conf.c
+++ b/nm-conf.c
@@ -88,7 +88,8 @@ void nm_write_static_ipvX(FILE *config_file, nm_ipvX ipvx)
 /* Get DNS in printable format. */
 memset(buffer, 0, NM_MAX_LEN_BUF);
 
-for (i = 0; !empty_str(ipvx.nameservers[i]); i++) {
+for (i = 0; (i  NETCFG_NAMESERVERS_MAX) 
+   (!empty_str(ipvx.nameservers[i])); i++) {
 strcat(buffer, ipvx.nameservers[i]);
 strcat(buffer, ;);
 }
-- 
1.7.10.4

Bug#768221: O: grub-choose-default -- Control Grub Default through a GUI

2014-11-05 Thread Kjell Braden

Package: wnpp
Severity: normal

Orphaning for personal reasons. New upstream version available.


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



Bug#711070: python-otr: please port to libotr5-dev

2013-06-10 Thread Kjell Braden

FYI: package is not used anymore and has been superseded.

--
 Kjell

mail/xmpp fn...@pentabarf.de


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



Bug#664431: Debian packages: removing deprecated dpatch

2012-03-29 Thread Kjell Braden
On Thu, 29 Mar 2012 19:08:16 +0300 Jari Aalto wrote,

 If you find anything to adjust in the proposed NMU patch, see:

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

 Thanks,
 Jari



Go ahead.

Thank you,
Kjell
--






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



Bug#504239: grub-choose-default: fails with message No protocol specified

2008-11-02 Thread Kjell Braden
John Marter schrieb:
 Package: grub-choose-default
 Version: 0.2-6
 Severity: normal
 
 When I run grub-choose-default as root I get the following output instead of 
 a menu
 
 # grub-choose-default
 Using /boot/grub/menu.lst and /boot/grub/default
 Getting entries
 Getting default
 Creating window, might take a second
 No protocol specified
 Traceback (most recent call last):
   File /usr/sbin/grub-choose-default, line 325, in module
 tk_root = Tk()
   File /usr/lib/python2.5/lib-tk/Tkinter.py, line 1650, in __init__
 self.tk = _tkinter.create(screenName, baseName, className, interactive, 
 wantobjects, useTk, sync, use)
 _tkinter.TclError: couldn't connect to display :0

This looks like your shell's environment is not allowed to connect to
your display (ie. $DISPLAY and $XAUTHORITY are not set correctly).

How exactly did you run grub-choose-default? The canonical way to do
this would be starting via su-to-root -c grub-choose-default or
similar (sudo, kdesudo, gksu), which would preserve most of the environment.



signature.asc
Description: OpenPGP digital signature


Bug#492621: ITP: python-otr -- python bindings for libotr

2008-07-27 Thread Kjell Braden
Package: wnpp
Severity: wishlist
Owner: Kjell Braden [EMAIL PROTECTED]

* Package name: python-otr
  Version : 0.2+r58
  Upstream Author : Kjell Braden [EMAIL PROTECTED]
* URL : http://python-otr.pentabarf.de
* License : GPL v3
  Programming Lang: SWIG / Python / C
  Description : python bindings for libotr

Python bindings for libotr, the library for off-the-record encryption in 
Instant Messaging.


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


Bug#479112: ValueError: universal newline mode can only be used with modes starting with 'r'

2008-05-02 Thread Kjell Braden
Package: quodlibet-plugins
Version: 20080329-1
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu intrepid ubuntu-patch

(this has been initially reported by lazka to ubuntu at:
https://bugs.launchpad.net/bugs/87188)

Both the Export Metadata and Export HTML plugins don't work at all
because they throw the following exception:

-- snip --
Traceback (most recent call last):
  File /usr/share/quodlibet/plugins/songsmenu.py, line 149, in
__handle
try: ret = map(plugin.plugin_album, albums)
  File /usr/share/quodlibet/plugins/songsmenu/importexport.py, line
54, in plugin_album
out = open(fn, 'wU')
ValueError: universal newline mode can only be used with modes starting
with 'r'
-- snip --

The message basicly explains the solution: remove the U in the mode in
songsmenu/importexport.py and songsmenu/html.py. I've attached a patch
which fixes this trivial issue.

Thanks,
Kjell
Index: quodlibet-plugins-20080329/songsmenu/html.py
===
--- quodlibet-plugins-20080329.orig/songsmenu/html.py	2008-05-02 23:36:35.0 +0200
+++ quodlibet-plugins-20080329/songsmenu/html.py	2008-05-02 23:36:39.0 +0200
@@ -80,6 +80,6 @@
 s += '/tr'
 songs_s += s
 
-f = open(fn, 'wU')
+f = open(fn, 'w')
 f.write((HTML % {'headers': cols_s, 'songs': songs_s}).encode('utf-8'))
 f.close()
Index: quodlibet-plugins-20080329/songsmenu/importexport.py
===
--- quodlibet-plugins-20080329.orig/songsmenu/importexport.py	2008-05-02 23:36:13.0 +0200
+++ quodlibet-plugins-20080329/songsmenu/importexport.py	2008-05-02 23:36:19.0 +0200
@@ -51,7 +51,7 @@
 
 global lastfolder
 lastfolder = dirname(fn)
-out = open(fn, 'wU')
+out = open(fn, 'w')
 
 for song in songs:
 printout, str(song('~basename'))


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#472998: aptitude crashed with SIGSEGV in pkgRecords::Lookup()

2008-03-27 Thread Kjell Braden
Package: aptitude
Version: 0.4.9-2ubuntu4
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu hardy

Originally reported by Dagfinn Ilmari Mannsåker and others at Ubuntu.

The main bug states that
The crash occurred when hitting 'U' in at the main package listing with
no actions pending and the extended description area hidden.

while someone else reported it as
crashed when marking package for installation

A stacktrace is attached, for more information (eg. different
stacktraces) see
https://bugs.launchpad.net/ubuntu/+source/aptitude/+bug/181406

Thanks,
Kjell
#0  0xb7f3b756 in pkgRecords::Lookup (this=0x8540db0, [EMAIL PROTECTED]) at 
pkgrecords.cc:60
No locals.
#1  0x080fb4c7 in pkg_description_widget::set_package (this=0x82d54f8, [EMAIL 
PROTECTED], [EMAIL PROTECTED])
at pkg_view.cc:246
rec = value optimized out
homepagestr = {static npos = 4294967295, 
  _M_dataplus = {std::allocatorchar = {__gnu_cxx::new_allocatorchar = 
{No data fields}, No data fields}, _M_p = 0xbfa9bf18 
X�\017\b�T-\b8h-\bDh-\bW\222ַ\001}}
newdesc = {static npos = 4294967295, 
  _M_dataplus = {std::allocatorwchar_t = 
{__gnu_cxx::new_allocatorwchar_t = {No data fields}, No data fields}, 
_M_p = 0x826c19c}}
frag = (class cwidget::fragment *) 0x88c9dc0
homepage = value optimized out
tags = value optimized out
untrusted_frag = value optimized out
#2  0x080fc2b4 in info_area_multiplex::set_package (this=0x82d6788, [EMAIL 
PROTECTED], [EMAIL PROTECTED])
at pkg_view.cc:386
hasBreakage = 191
#3  0x080fc615 in info_area_multiplex::reset_package (this=0x82d6788) at 
pkg_view.cc:447
No locals.
#4  0x0811db92 in do_mark_upgradable () at 
/usr/include/sigc++-2.0/sigc++/signal.h:550
No locals.
#5  0xb7e81c42 in cwidget::widgets::widget::handle_key (this=0x82ca1b0, [EMAIL 
PROTECTED])
at /usr/include/sigc++-2.0/sigc++/functors/slot.h:440
rval = false
#6  0xb7e5d588 in cwidget::widgets::passthrough::handle_key (this=0x82ca1b0, 
[EMAIL PROTECTED])
at passthrough.cc:98
w = {ref = 0x82cac20}
#7  0xb7e819b9 in cwidget::widgets::widget::dispatch_key (this=0x82ca1b0, 
[EMAIL PROTECTED]) at widget.cc:267
rval = 183
#8  0xb7e49191 in cwidget::widgets::menubar::handle_key (this=0x82bcd20, [EMAIL 
PROTECTED]) at menubar.cc:639
No locals.
#9  0xb7e819b9 in cwidget::widgets::widget::dispatch_key (this=0x82bcd20, 
[EMAIL PROTECTED]) at widget.cc:267
rval = 183
#10 0xb7e16b7d in cwidget::toplevel::input_thread::get_input_event::dispatch 
(this=0x8c27660)
at toplevel.cc:297
k = {ch = 85, function_key = false}
wch = 85
status = value optimized out
#11 0xb7e0f3e5 in cwidget::toplevel::mainloop (synch=0) at toplevel.cc:1040
ev = (class cwidget::toplevel::event *) 0x8c27660
main_level = 1
#12 0x0811ec18 in ui_main () at ui.cc:2667
No locals.
#13 0x080618a8 in main (argc=) at main.cc:588
p = {ref = 0x82ceb90}
status_fname = 0x0
display_format = {static npos = 4294967295, 
  _M_dataplus = {std::allocatorchar = {__gnu_cxx::new_allocatorchar = 
{No data fields}, No data fields}, _M_p = 0x827862c %c%a%M %p# - %d#}}
sort_policy = {static npos = 4294967295, 
  _M_dataplus = {std::allocatorchar = {__gnu_cxx::new_allocatorchar = 
{No data fields}, No data fields}, _M_p = 0x8278614 name}}
width = {static npos = 4294967295, 
  _M_dataplus = {std::allocatorchar = {__gnu_cxx::new_allocatorchar = 
{No data fields}, No data fields}, _M_p = 0x826c044 }}
simulate = false
download_only = false
update_only = true
install_only = false
queue_only = false
assume_yes = false
fix_broken = false
showvers = false
showdeps = false
showsize = false
visual_preview = false
always_prompt = false
verbose = 0
seen_quiet = false
quiet = 0
curopt = value optimized out
#14 0xb7b45450 in __libc_start_main () from /lib/tls/i686/cmov/libc.so.6
#15 0x0805fc61 in _start ()

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


Bug#466587: Invalid desktop file

2008-02-19 Thread Kjell Braden
Package: hardinfo 
Version: 0.4.2.3-1
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu hardy ubuntu-patch

Shirish Agarwal found that the desktop file provided by debian is
invalid:
$ desktop-file-validate hardinfo-0.4.2.3/debian/hardinfo.desktop 
hardinfo-0.4.2.3/debian/hardinfo.desktop: warning: key Encoding in
group Desktop Entry is deprecated
hardinfo-0.4.2.3/debian/hardinfo.desktop: error: value
HardwareSettings for key Type in group Desktop Entry is not a
registered type value (Application, Link and Directory)
hardinfo-0.4.2.3/debian/hardinfo.desktop: error: value
Settings;HardwareSettings for string list key Categories in group
Desktop Entry does not have a semicolon (';') as trailing character

I've attached a patch which fixes this issue.

Thank you,
Kjell
diff -u hardinfo-0.4.2.3/debian/hardinfo.desktop hardinfo-0.4.2.3/debian/hardinfo.desktop
--- hardinfo-0.4.2.3/debian/hardinfo.desktop
+++ hardinfo-0.4.2.3/debian/hardinfo.desktop
@@ -2,9 +2,8 @@
-Encoding=UTF-8
 Name=System Profiler and Benchmark
 Name[pt_BR]=Informações e Testes do Sistema
 Exec=/usr/bin/hardinfo
 Icon=/usr/share/hardinfo/pixmaps/logo.png
 Terminal=false
-Type=HardwareSettings
+Type=Application
 StartupNotify=true
-Categories=Settings;HardwareSettings
+Categories=Settings;HardwareSettings;


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


Bug#466587: Acknowledgement (Invalid desktop file)

2008-02-19 Thread Kjell Braden
Forgot to provide the URL of the ubuntu bug:
https://bugs.launchpad.net/bugs/193394


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


Bug#459458: libotr2-dev: -dev package should depend on libgcrypt11-dev

2008-01-06 Thread Kjell Braden
Package: libotr2-dev
Version: 3.1.0-1
Severity: normal
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu hardy


Some headers included in libotr2-dev include gcrypt.h which is in
libgcrypt11-dev, so it should have a Depends on it.

$ grep -Hr gcrypt.h /usr/include/libotr
/usr/include/libotr/privkey-t.h:#include gcrypt.h
/usr/include/libotr/context.h:#include gcrypt.h
/usr/include/libotr/sm.h:#include gcrypt.h
/usr/include/libotr/auth.h:#include gcrypt.h

-- System Information:
Debian Release: lenny/sid
  APT prefers hardy-updates
  APT policy: (500, 'hardy-updates'), (500, 'hardy-security'), (500,
'hardy-proposed'), (500, 'hardy-backports'), (500, 'hardy')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-2-generic (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/bash

Versions of packages libotr2-dev depends on:
ii  libotr2   3.1.0-1Off-the-Record Messaging
library

libotr2-dev recommends no packages.

-- no debconf information



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


Bug#454655: micro-httpd should not call inetd initscript in installation/remove scripts

2007-12-06 Thread Kjell Braden
Package: micro-httpd
Version: 20051212-7
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu hardy

The postinst/prerm scripts should not call the inetd/openbsd-inetd
initscript as for example rlinetd, which is providing inet-superserver
too, is not covered and would make those scripts fail.

Other packages like for example ltsp don't call any initscript but leave
that for the user.

Originally reported by Sven Heinicke at
https://bugs.edge.launchpad.net/ubuntu/+source/micro-httpd/+bug/174478


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


Bug#436192: ITP: grub-choose-default -- Control Grub Default through a GUI

2007-12-01 Thread Kjell Braden

On Fr, 2007-11-30 at 09:02 +0100, Daniel Baumann wrote:
 Kjell Braden wrote:
  yes, I uploaded it as 0.2-2 to mentors. Is it okay to use gksu in
  the .desktop and in the menu as the wrapper script for root permissions?
 
 please never use gksu or ksu directly, but use su-to-root.
 

Hi,

thanks for clarification, I uploaded that as 0.2-3 to mentors.

http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=grub-choose-default

Regards,
Kjell


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


Bug#436192: ITP: grub-choose-default -- Control Grub Default through a GUI

2007-11-28 Thread Kjell Braden

On Mi, 2007-11-28 at 18:45 +0100, Bart Martens wrote:
 Hi,
 
 http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=grub-choose-default
 
 Can you fix these lintian messages ?
 
 W: grub-choose-default: desktop-command-not-in-package 
 /usr/share/applications/grub-choose-default.desktop gksudo
 W: grub-choose-default: menu-item-uses-apps-section 
 /usr/share/menu/grub-choose-default:2
 W: grub-choose-default: menu-item-creates-new-section Apps/Tools 
 /usr/share/menu/grub-choose-default:2
 
 Regards,
 
 Bart Martens
 

Hi,

yes, I uploaded it as 0.2-2 to mentors. Is it okay to use gksu in
the .desktop and in the menu as the wrapper script for root permissions?

Regards,
Kjell Braden


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


Bug#451622: xkb-data: Serbia and Montenegro no longer exists

2007-11-17 Thread Kjell Braden
Package: xkb-data
Version: 1.0~cvs.20070916-1
Severity: minor


Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Kjell Braden [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: xkb-data: Serbia and Montenegro no longer exists
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu hardy
Message-ID: [EMAIL PROTECTED]
X-Mailer: reportbug 3.39
Date: Sat, 17 Nov 2007 14:40:19 +

Package: xkb-data
Version: 1.0~cvs.20070916-1
Severity: minor

Forwarded from: 
https://bugs.edge.launchpad.net/ubuntu/+source/xkeyboard-config/+bug/57878
Serbia and Montenegro is now Serbia and Montenegro, so to speak: 
Montenegro became independent on June 8th, 2006.

Upstream's CVS included this on October 4th, 2007.

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

Kernel: Linux 2.6.22-14-generic (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/bash

-- no debconf information

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.9-023stab043.1-smp
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8)



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#451622: xkb-data: Serbia and Montenegro no longer exists

2007-11-17 Thread Kjell Braden
Oh, sorry for that ugly report, looks like I messed around with
reportbug.
This is the original text:


Forwarded from:
https://bugs.edge.launchpad.net/ubuntu/+source/xkeyboard-config/+bug/57878
Serbia and Montenegro is now Serbia and Montenegro, so to speak:
Montenegro became independent on June 8th, 2006.

Upstream's CVS included this on October 4th, 2007.

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

Kernel: Linux 2.6.22-14-generic (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set
to C)
Shell: /bin/sh linked to /bin/bash

-- no debconf information



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


Bug#451659: nano: does wrong line-converting

2007-11-17 Thread Kjell Braden
Package: nano
Version: 2.0.2-1etch1
Severity: important

Forwarded from
https://bugs.edge.launchpad.net/ubuntu/+source/nano/+bug/62666
If not specified --noconvert on command line, nano saves files with CR
instead of new lines (LF). This is BAD as it breaks bash scripts.

This only occurs with some files. Some files can start out as unix
format, then be saved and are now dos/mac format. Other files don't do
this.

This file has unix-style line-endings: 
http://launchpadlibrarian.net/4532611/grabber.sh
Opening it in vim shows up as expected. Opening it in nano does so too,
except that it shows a message that reads Converted from Mac format.
Saving it again results in saving mac-style line-endings. 

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.9-023stab043.1-smp
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8)

Versions of packages nano depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libncursesw5   5.5-5 Shared libraries for terminal hand

nano recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#436192: ITP: grub-choose-default -- Control Grub Default through a GUI

2007-08-06 Thread Kjell Braden
Package: wnpp
Severity: wishlist
Owner: Kjell Braden [EMAIL PROTECTED]

* Package name: grub-choose-default
  Version : 0.2
  Upstream Author : David Mohr [EMAIL PROTECTED]
* URL : http://cs.unm.edu/~dmohr/grub.php
* License : GPL v2
  Programming Lang: Python  / Tk
  Description : Control Grub Default through a GUI

(text below is taken from the website given above)
Do you have a dual boot system? Isn't it annoying when you want to
reboot from Linux into Windows or vice-versa, and you have to wait for
the machine to shut down, BIOS to initialize just so that you can now
select the OS that you want to boot into?

grub-choose-default gives you a GUI that you can use to easily select
the next default for grub and you can go and grab a snack while your
computer reboots without having to wait for anything.

It's a very simple program that just reads your grub menu entries and
then lets you click on the one you want to be the next default.



signature.asc
Description: OpenPGP digital signature


Bug#431289: Parrot has libicu36-dev as build-dependency and libicu34-dev as dependency

2007-07-01 Thread Kjell Braden
Package: parrot
Version: 0.4.13-1

The source-package parrot has libicu36-dev in the build-dependencies
while one resulting binary-package, libparrot-dev, has libicu34-dev in
the dependencies. This should most probably be libicu36-dev.

Kjell
diff -pruN parrot-0.4.13.orig/debian/control parrot-0.4.13/debian/control
--- parrot-0.4.13.orig/debian/control   2007-07-01 14:21:36.0 +0200
+++ parrot-0.4.13/debian/control2007-07-01 14:21:52.0 +0200
@@ -33,7 +33,7 @@ Description: virtual machine to execute 
 Package: libparrot-dev
 Architecture: any
 Section: libdevel
-Depends: libparrot0.4.13 (= ${Source-Version}), parrot, libicu34-dev
+Depends: libparrot0.4.13 (= ${Source-Version}), parrot, libicu36-dev
 Description: virtual machine to execute bytecode for interpreted languages
  Parrot is a virtual machine designed to execute bytecode for interpreted
  languages efficiently. Parrot will be the target for the Perl 6 compiler.
diff -pruN parrot-0.4.13.orig/debian/control.in parrot-0.4.13/debian/control.in
--- parrot-0.4.13.orig/debian/control.in2007-07-01 14:21:36.0 
+0200
+++ parrot-0.4.13/debian/control.in 2007-07-01 14:21:58.0 +0200
@@ -33,7 +33,7 @@ Description: virtual machine to execute 
 Package: libparrot-dev
 Architecture: any
 Section: libdevel
-Depends: libparrot%SOVERSION% (= ${Source-Version}), parrot, libicu34-dev
+Depends: libparrot%SOVERSION% (= ${Source-Version}), parrot, libicu36-dev
 Description: virtual machine to execute bytecode for interpreted languages
  Parrot is a virtual machine designed to execute bytecode for interpreted
  languages efficiently. Parrot will be the target for the Perl 6 compiler.


signature.asc
Description: OpenPGP digital signature


Bug#429063: gajim plugin throws AttributeError on pause/unpause and track changing

2007-06-15 Thread Kjell Braden
Package: quodlibet-plugins
Version: 20070529-1

originally found at: https://launchpad.net/ubuntu/+bug/120065
--
On pausing/unpausing and when changing tracks I get the following error
(lines and affected functions differ on every event)
Traceback (most recent call last):
  File /usr/share/quodlibet/plugins/events.py, line 128, in __invoke
try: handler(*args)
  File /usr/share/quodlibet/plugins/events/gajim_status.py, line 92,
in plugin_on_unpaused
self.change_status(self.accounts, self.current)
  File /usr/share/quodlibet/plugins/events/gajim_status.py, line 73,
in change_status
for account in self.interface.list_accounts():
AttributeError: 'NoneType' object has no attribute 'list_accounts'

$ LC_ALL=C apt-cache policy quodlibet-plugins
quodlibet-plugins:
  Installed: 20070529-1ubuntu1
  Candidate: 20070529-1ubuntu1
  Version table:
 *** 20070529-1ubuntu1 0
500 http://archive.ubuntu.com gutsy/universe Packages
100 /var/lib/dpkg/status
$ LC_ALL=C apt-cache policy quodlibet
quodlibet:
  Installed: 1.0-0ubuntu1
  Candidate: 1.0-0ubuntu1
  Version table:
 *** 1.0-0ubuntu1 0
500 http://archive.ubuntu.com gutsy/universe Packages
100 /var/lib/dpkg/status
--

This should also affect debian since ubuntu made no changes to the gajim
plugin.
The attached patch should fix this issue.
--- quodlibet-plugins-20070529.orig/events/gajim_status.py
+++ quodlibet-plugins-20070529/events/gajim_status.py
@@ -82,14 +82,17 @@
 self.current = Pattern(self.pattern) % song
 else:
 self.current = ''
-self.change_status(self.accounts, self.current)
+if self.interface:
+self.change_status(self.accounts, self.current)
 
 def plugin_on_paused(self):
-if self.paused and self.current != '':
-self.change_status(self.accounts, self.current +  [paused])
+if self.interface:
+if self.paused and self.current != '':
+self.change_status(self.accounts, self.current +  [paused])
 
 def plugin_on_unpaused(self):
-self.change_status(self.accounts, self.current)
+if self.interface:
+self.change_status(self.accounts, self.current)
 
 def accounts_changed(self, entry):
 self.accounts = entry.get_text().split()


signature.asc
Description: OpenPGP digital signature


Bug#427659: xchm.desktop should point to tools category

2007-06-05 Thread Kjell Braden
Package: xchm
Version: 2.13.3

(originally found at: https://launchpad.net/ubuntu/+bug/83400)
kchmviewer and chmviewer appear in KDE menu in the submenu Utilities,
while xchm appears in the submenu Gaphics.

Ideally all should be in one place.

It is also in the Application category, which isn't valid according to [1].

The following patch should fix these issues.

-snip-
--- xchm-1.13/debian/xchm.desktop
+++ xchm-1.13/debian/xchm.desktop
@@ -8,7 +8,7 @@
 Terminal=false
 Type=Application
 Icon=xchm
-Categories=Application;Viewer;Graphics;
+Categories=Viewer;Utility;
 Actions=View;
 MimeType=application/x-chm;

-snip-

In fact, this affects any existing debian version.

[1] http://standards.freedesktop.org/menu-spec/latest/apa.html



signature.asc
Description: OpenPGP digital signature


Bug#423215: Changelog entry for amd64 but no change

2007-05-10 Thread Kjell Braden
Package: oooqs
Version: 2.0.3-8

The changelog for version 2.0.3-8 says that it enabled amd64 but it's
still not enabled in debian/control.



signature.asc
Description: OpenPGP digital signature