Bug#932578: PATCH

2019-08-16 Thread sam penny
The release notes for PILlow 6.1 
(https://pillow.readthedocs.io/en/stable/releasenotes/6.0.0.html#backwards-incompatible-changes)
 indicate that Image.VERSION has been dropped in favour of using 
Image.__version__. VERSION was fossilised at '1.1.7' 9 years ago to avoid 
confusing legacy users of the original PIL library.

The only usage of this attribute is to check to see if the version is 1.1.7 
(which it hasn't been for some time) in order to work around a bug. The 
relevant code is

## BEGIN CODE

if Image.VERSION == '1.1.7':

    def split(image):
    """Work around for bug in Pil 1.1.7

    :param image: input image
    :type image: PIL image object
    :returns: the different color bands of the image (eg R, G, B)
    :rtype: tuple
    """
    image.load()
    return image.split()
else:

    def split(image):
    """Work around for bug in Pil 1.1.7

    :param image: input image
    :type image: PIL image object
    :returns: the different color bands of the image (eg R, G, B)
    :rtype: tuple
    """
    return image.split()

## END CODE

Given that the workaround is long irrelevant, we should probably just define 
split() according to the else clause. The docstring should also probably be 
updated.

The safer alternative is to replace the condition of the if statement with

if hasattr(Image, 'VERSION') and Image.VERSION == '1.1.7':

which works for me and seems like it should work for anyone else, too, even if 
they're using the long abandoned original PIL library, though I don't fancy 
testing that.

## BEGIN PATCH
--- bin/imtools.py    2018-08-07 13:51:47.0 +0100
+++ bin/imtools.py  2019-08-16 22:05:05.018603503 +0100
@@ -620,7 +620,7 @@
 has_alpha(image)


-if Image.VERSION == '1.1.7':
+if hasattr(Image, '"VERSION') and Image.VERSION == '1.1.7':

 def split(image):
 """Work around for bug in Pil 1.1.7
## END PATCH



Bug#854627: Follow up...?

2017-09-24 Thread sam penny
I'm affected by this problem, but it's been more than 7 months since any 
activity was seen on this bug report. I note that no response has been made by 
anyone representing src:wayland - does anyone watch the relevant email / list? 
Perhaps there is a different package that would be more appropriate to assign 
this to?
Sam "SammyTheSnake" Penny


Bug#867269: reportbug: Report appears lost when MTA can't be contacted

2017-07-05 Thread sam penny
Package: reportbug
Version: 7.1.7
Severity: important

Dear Maintainer,

   * What led up to the situation?

I tried submitting a bug report but reportbug couldn't contact my smtp server
(mail.yahoo.com)

   * What was the outcome of this action?

The gtk interface showed a yes/no dialog with the message "[error message] Do
you want to retry (or else save the report and exit)? The wording of this
dialog is confusing and doesn't give any indication of where the report might
be saved or what to do with it.

   * What outcome did you expect instead?

The option to reconfigure the MTA setting, or fall back to the debian provided
SMTP service (at bugs.debian.org?) would be better.

Failing that, there should at least be a more helpful message: one that doesn't
imply a non yes/no answer to a yes/no dialog, one that indicates where the
saved bug report can be found and some hint toward what to do with it. I note
that there are several bug reports indicating there's no option to get reportbug
to continue a saved bug report (#328531, #702107, #712066) which should
probably be merged and/or fixed...
Ironically, I actually hit this bug again trying to submit *this* bug report, 
so I'vefound the bug report saved in /tmp/ and am sending it via my MUA, so 
pleaseforgive me if I've broken the formatting in some way.

Cheers & God bless
    Sam "SammyTheSnake" Penny


-- Package-specific info:
** Environment settings:
INTERFACE="gtk2"

** /home/sammy/.reportbugrc:
reportbug_version "7.1.7"
mode advanced
ui text
realname "Sam \"SammyTheSnake\" Penny"
email "xanthrax...@yahoo.co.uk"
no-cc
header "X-Debbugs-CC: xanthrax...@yahoo.co.uk"
smtphost reportbug.debian.org

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

Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt    1.4.6
ii  python3    3.5.3-3
ii  python3-reportbug  7.1.7

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail 
pn  debconf-utils  
pn  debsums    
pn  dlocate    
pn  emacs24-bin-common | emacs25-bin-common    
ii  exim4  4.89-3
ii  exim4-daemon-light [mail-transport-agent]  4.89-3
ii  file   1:5.30-1
ii  gir1.2-gtk-3.0 3.22.16-1
ii  gir1.2-vte-2.91    0.46.1-1
ii  gnupg  2.1.18-8
ii  python3-gi 3.22.0-2+b1
ii  python3-gi-cairo   3.22.0-2+b1
pn  python3-gtkspellcheck  
pn  python3-urwid  
ii  xdg-utils  1.1.1-1

Versions of packages python3-reportbug depends on:
ii  apt    1.4.6
ii  file   1:5.30-1
ii  python3    3.5.3-3
ii  python3-debian 0.1.30
ii  python3-debianbts  2.6.1
ii  python3-requests   2.12.4-1

python3-reportbug suggests no packages.

-- no debconf information



Bug#867263: dbus: /var/log/reboot-required.pgks not updated when /var/log/reboot-required is touched

2017-07-05 Thread sam penny
Package: dbusVersion: 1.10.20-1Severity: normal

Dear Maintainer

    * What led up to the situation?

I upgraded dbus (from 1.10.18-1 to 1.10.20-1) as part of a regular aptitude 
upgrade

    * What was the outcome of this action?

A message "A reboot is required to replace the running dbus-daemon." was shown 
and /var/run/reboot-required was touched, but /var/run/reboot-required.pgks 
remained unchanged (absent in this case)

    * What outcome did you expect instead?

Additionally to the above, /var/run/reboot-required.pkgs should be used to 
identify dbus as the package requesting a reboot.

As a secondary issue, I would vote for a fix for https://bugs.debian.org/805449 
but if we do need a reboot, it should be clear why to facilitate an informed 
decision about when the reboot should be scheduled

As a tertiary issue, but I can't work out where to report it (pointers 
welcome!) the contents of the reboot-required.pkgs file in general could really 
do with some more information about the package versions and the timing of the 
request - that way I can look at the changelog to see what rebooting will get 
me in terms of bugfixes etc. (eg. if if the update fixes a typo in a rare error 
message but dbus can't be replaced without a reboot, that reboot is going to 
wait until I have a better reason to reboot - if it fixes a major security 
issue, that reboot will happen as soon as reasonably possible)
P.S. reportbug let me down so I'm attempting to submit this by email - sorry if 
I've missed important information or mucked up the formatting etc.

Cheers & God bless    Sam "SammyTheSnake" Penny


Bug#323420: from sam

2015-11-19 Thread sam penny
hiya 


http://escaledeville.com/exact.php?dead=r1vpsx0c28em7





sam
xanthrax...@yahoo.co.uk



Bug#481163: From: sam

2015-11-19 Thread sam penny
Good morning 

http://escaledeville.com/signal.php?ancient=dzgr10r2db87cv





Thanks!
sam



Bug#632113: Update?

2011-12-08 Thread sam penny
It's been nearly half a year, has there been any progress on this?

Bastien Roucaries, have you decided not to package git extras, and perhaps 
should this be converted to an RFP rather than an ITP?

I'd love to see this packaged as I'd rather use a debian package than install 
things by hand!


Cheers  God bless
    Sam SammyTheSnake Penny




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



Bug#639886: FTBFS: standard includes have been moved from /usr/lib/* to /usr/bin/{arch directory}/*

2011-08-31 Thread sam penny
Package: wine
Version: 1.1.24
Justification: fails to build from source
Severity: serious

I did apt-get build-dep wine, apt-get source wine and then make depend
produces the error below.

Similarly, I had previously been tracking the wine git and building
regularly and recently that stopped working with the same error.

I believe the problem is that a recent upgrade of libc dev files moved
various standard library includes into arch specific sub directories for
multiarch support.


$ make depend
make[1]: Entering directory `/home/sammy/src/wine-debian/wine-1.1.24/tools'
gcc -m32 -c -I. -I. -I../include -I../include -I/usr/include/freetype2
-Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement
--Wwrite-strings -Wtype-limits -Wpointer-arith  -g -O2  -o makedep.o
--makedep.c
In file included from /usr/include/bits/errno.h:25:0,
 from /usr/include/errno.h:36,
 from makedep.c:27:
/usr/include/linux/errno.h:4:23: fatal error: asm/errno.h: No such file or
directory
compilation terminated.
make[1]: *** [makedep.o] Error 1
make[1]: Leaving directory `/home/sammy/src/wine-debian/wine-1.1.24/tools'
make: *** [tools/makedep] Error 2


I do remember seeing a message about a week ago as part of a full-upgrade
mentioning a need to change include directories in non-debian build setups,
but I'm not sure how to find it again. I've looked through the changelogs of
all the relevant-sounding packages I can find and I found the following:


linux-2.6 (3.0.0-2) unstable; urgency=high
[...]
  [ Ben Hutchings ]
  * linux-libc-dev: Install include/asm under arch-specific directory
    (thanks to Aurelien for correcting the directory); mark package as
    multi-arch-coinstallable (Multi-Arch: same)


and this appears to be the change indicated here, based on the timing of the
error appearing.

So, it seems to me that either (a) wine needs to look in a different
directory (include the arch specific directory in the include path) or (b)
there needs to be some sane default set of includes in the non-arch-specific
directory (which set of includes might not be obvious on a multi-arch system
such as an amd64 system...)


I hope this is helpful and that wine will be buildable soon

Cheers  God bless
    Sam SammyTheSnake Penny

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

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



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



Bug#639886: Version: also 1.0.1-3.1

2011-08-31 Thread sam penny
Version: add 1.0.1-3.1 


I ought to point out that I also get the same error when I use the version 
currently in testing (1.0.1-3.1, 1.2.24 is in experimental)

I note that both of these versions are a long way from the bleeding edge of 
wine development, but the problem still stands.

Cheers  God bless
    Sam SammyTheSnake Penny




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



Bug#631367: phpmyadmin: sql error reporting is terse to the point of uselessness

2011-06-23 Thread sam penny
Package: phpmyadmin
Version: 4:3.4.2-1
Severity: important

I've just upgraded from 3.4.1-1 to 3.4.2-1 as part of my approximately daily
dist-upgrade.

When I type in a sql query in the SQL tab, if there is an error, the message
consists of only an error number[1], whereas previously it included a
descriptive error message including where in the query the error was
detected[2].

I have seen some error messages come through on occasion, but I've not
spotted any pattern to when they do, even the same message might appear on
one occasion, but not another.

Possibly, the bug is in php5-mysql which was also upgraded at the same time
(from 5.3.3-7+squeeze1 to 5.3.6-12)

Cheers  God bless
Sam SammyTheSnake Penny
[1] like #1064 - 
[2] like You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near
'fish' at line 1 or the like.


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

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

Versions of packages phpmyadmin depends on:
ii  dbconfig-common  1.8.47  common framework for packaging dat
ii  debconf [debconf-2.0]1.5.39  Debian configuration management sy
ii  libapache2-mod-php5  5.3.6-12server-side, HTML-embedded scripti
ii  perl 5.12.3-7+b1 Larry Wall's Practical Extraction 
ii  php5 5.3.6-12server-side, HTML-embedded scripti
ii  php5-cgi 5.3.6-12server-side, HTML-embedded scripti
ii  php5-mcrypt  5.3.6-12MCrypt module for php5
ii  php5-mysql   5.3.6-12MySQL module for php5
ii  ttf-dejavu-core  2.33-1  Vera font family derivate with add
ii  ucf  3.0025+nmu2 Update Configuration File: preserv

Versions of packages phpmyadmin recommends:
ii  apache2   2.2.19-1   Apache HTTP Server metapackage
ii  apache2-mpm-prefork [httpd]   2.2.19-1   Apache HTTP Server - traditional n
ii  mysql-client  5.1.57-1.3 MySQL database client (metapackage
ii  mysql-client-5.1 [mysql-clien 5.1.57-1.3 MySQL database client binaries
ii  php5-gd   5.3.6-12   GD module for php5

Versions of packages phpmyadmin suggests:
ii  epiphany-browser [www-brows 2.30.6-2 Intuitive GNOME web browser
ii  iceweasel [www-browser] 4.0.1-2  Web browser based on Firefox
ii  lynx-cur [www-browser]  2.8.8dev.8-1 Text-mode WWW Browser with NLS sup
ii  mysql-server5.1.57-1.3   MySQL database server (metapackage
ii  mysql-server-5.1 [mysql-ser 5.1.57-1.3   MySQL database server binaries and
ii  w3m [www-browser]   0.5.3-2+b1   WWW browsable pager with excellent

-- Configuration Files:
/etc/phpmyadmin/config.inc.php changed [not included] (it has passwords in
/it! let me know if it's needed)

-- debconf information:
  phpmyadmin/remove-error: abort
  phpmyadmin/setup-username: admin
* phpmyadmin/db/app-user: phpmyadmin
  phpmyadmin/install-error: abort
* phpmyadmin/reconfigure-webserver: apache2
  phpmyadmin/remote/host:
* phpmyadmin/dbconfig-install: true
  phpmyadmin/remote/port:
* phpmyadmin/dbconfig-upgrade: true
* phpmyadmin/mysql/admin-user: root
  phpmyadmin/internal/reconfiguring: false
  phpmyadmin/missing-db-package-error: abort
  phpmyadmin/remote/newhost:
  phpmyadmin/upgrade-error: abort
  phpmyadmin/dbconfig-reinstall: false
* phpmyadmin/db/dbname: phpmyadmin
  phpmyadmin/database-type: mysql
  phpmyadmin/internal/skip-preseed: false
  phpmyadmin/upgrade-backup: true
  phpmyadmin/dbconfig-remove:
  phpmyadmin/passwords-do-not-match:
* phpmyadmin/mysql/method: unix socket
  phpmyadmin/purge: false




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



Bug#627310: invoke-rc.d pulseaudio status and invokce-rc.d pulseaudio restart disagree

2011-05-19 Thread sam penny
Package: pulseaudio
Version: 0.9.21-4
Severity: normal

I'm having a mare of a time getting pulseaudio to work, but the issue in
question here is illustrated by the following:

sammy@sammy-desktop:~$ sudo invoke-rc.d pulseaudio status
pulseaudio is running.
sammy@sammy-desktop:~$ sudo invoke-rc.d pulseaudio stop
Stopping PulseAudio DaemonNo process in pidfile '/var/run/pulse/pid' found
running; none killed.
... pulseaudio is not running.
sammy@sammy-desktop:~$


Is it running or not? There doesn't seem to be a directory at /var/run/pulse
at all, so possibly something wasn't created at install time?

I think pulseaudio is actually running, as it seems to have my sound devices
open:

sammy@sammy-desktop:~$ fuser -v /dev/snd/*
 USERPID ACCESS COMMAND
/dev/snd/controlC0:  sammy  3462 F pulseaudio
 sammy  7926 F gnome-volume-co
 sammy 12503 F mixer_applet2
/dev/snd/pcmC0D0p:   sammy  3462 F...m pulseaudio
sammy@sammy-desktop:~$


HTH
Cheers  God bless
Sam SammyTheSnake Penny


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

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

Versions of packages pulseaudio depends on:
ii  adduser   3.112+nmu2 add and remove users and groups
ii  consolekit0.4.4-1framework for defining and trackin
ii  libasound21.0.23-3   shared library for ALSA applicatio
ii  libc6 2.13-4 Embedded GNU C Library: Shared lib
ii  libcap2   1:2.20-1   support for getting/setting POSIX.
ii  libdbus-1-3   1.4.8-3simple interprocess messaging syst
ii  libgdbm3  1.8.3-9GNU dbm database routines (runtime
ii  libice6   2:1.0.7-1  X11 Inter-Client Exchange library 
ii  libltdl7  2.4-2  A system independent dlopen wrappe
ii  libpulse0 0.9.21-4   PulseAudio client libraries
ii  libsamplerate00.1.7-3Audio sample rate conversion libra
ii  libsm62:1.2.0-1  X11 Session Management library
ii  libsndfile1   1.0.24-1   Library for reading/writing audio
ii  libspeexdsp1  1.2~rc1-1  The Speex extended runtime library
ii  libudev0  167-3  libudev shared library
ii  libx11-6  2:1.4.3-1  X11 client-side library
ii  libxtst6  2:1.2.0-1  X11 Testing -- Record extension li
ii  lsb-base  3.2-27 Linux Standard Base 3.2 init scrip
ii  udev  167-3  /dev/ and hotplug management daemo

Versions of packages pulseaudio recommends:
ii  gstreamer0.10-pulseaudio  0.10.28-3  GStreamer plugin for PulseAudio
ii  libasound2-plugins1.0.23-2   ALSA library additional plugins
ii  pulseaudio-esound-compat  0.9.21-4   PulseAudio ESD compatibility layer
ii  pulseaudio-module-x11 0.9.21-4   X11 module for PulseAudio sound se

Versions of packages pulseaudio suggests:
pn  paman none (no description available)
pn  paprefs   none (no description available)
ii  pavucontrol   0.9.9-1PulseAudio Volume Control 
pn  pavumeter none (no description available)
ii  pulseaudio-utils  0.9.21-4   Command line tools for the PulseAu

-- 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#624384: what is this a duplicate of?

2011-05-17 Thread sam penny
I am trying to find out how to fix my VirtualBox install, and this matches my 
symptoms. Can you provide an indication of where I can find this other bug, 
please?

Cheers  God bless
Sam SammyTheSnake Penny




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



Bug#584648: Already available

2011-04-07 Thread sam penny
I suggest this bug should be closed, as the functionality is already available.

put the following in your .screenrc

 idle 300 lockscreen

after 300 seconds of idle time (no key presses recorded by screen) it will run 
the lockscreen command


HTH
Cheers  God bless
Sam SammyTheSnake Penny




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



Bug#611720: Acknowledgement (crack: apt purge does not remove /var/run/Crack/ and contents)

2011-02-01 Thread sam penny
I noticed that my purge hadn't also purged the auto-installed crack-common
package, which I suspected might have been a part of the story, but I just
purged that too and the /var/run/Crack/ directory is still there and still 
contains
various files...

Cheers  God bless
 Sam SammyTheSnake Penny







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



Bug#492863: update-notifier: the tray icon keeps finding updates even when the system is up to date

2010-02-18 Thread sam penny
Another case:

update-notifier says there's one update available, but when I double-click to 
open update-manager, it says I'm up to date.

apt-get update agrees with update-manager

apt-get dist-upgrade says I have one *NEW* package to install, dash.

update-manager has an optional command line parameter to make it do 
dist-upgrade instead of [safe-]upgrade, perhaps update-notifier could just make 
use of this?

As an aside, why would dist-upgrade want to install a new package without that 
occurring alongside a package upgrade to a version with new dependencies? :-S

Cheers  God bless
Sam SammyTheSnake Penny








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



Bug#524056: Update

2009-05-11 Thread sam penny

I'm still getting this behaviour with 100% reproducibility on my setup bar one 
detail, which is that while the initial data check is in progress, I can see 
all the torrents I'm tracking with my local instance of debtorrent-client, but 
once the data check is complete, I get the 500 again until I re-start 
debtorrent-client, which again only remedies the situation while the existing 
data check is still going on.

All this time, I'm still able to use debtorrent-client to update my computers 
as well as ever...

Am I the only one getting this behaviour? Is there some configuration I ought 
to be changing?

Cheers  God bless
Sam SammyTheSnake Penny






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



Bug#516708: debtorrent log filled with failed downloads

2009-02-23 Thread Sam Penny
Package: debtorrent
Version: 0.1.9
Severity: normal


My /var/log/debtorrent/debtorrent-client.log has over a hundred megabytes
(over about a week) of messages similar to the following

2009-02-23 08:48:36,420 MainThread DebTorrent.BT1.HTTPDownloader INFO 
downloading piece 5084
2009-02-23 08:48:36,500 MainThread DebTorrent.BT1.HTTPDownloader WARNING bad 
status from http seed: 404
2009-02-23 08:48:37,496 MainThread DebTorrent.BT1.PiecePicker INFO Next piece 
to download/request: 563
2009-02-23 08:48:37,496 MainThread DebTorrent.BT1.HTTPDownloader INFO 
downloading piece 563
2009-02-23 08:48:37,552 MainThread DebTorrent.BT1.HTTPDownloader WARNING bad 
status from http seed: 404
2009-02-23 08:48:38,360 MainThread DebTorrent.BT1.PiecePicker INFO Next piece 
to download/request: 12113
2009-02-23 08:48:38,360 MainThread DebTorrent.BT1.HTTPDownloader INFO 
downloading piece 12113
2009-02-23 08:48:38,361 MainThread DebTorrent.BT1.PiecePicker INFO Next piece 
to download/request: 101
2009-02-23 08:48:38,361 MainThread DebTorrent.BT1.HTTPDownloader INFO 
downloading piece 101
2009-02-23 08:48:38,401 MainThread DebTorrent.BT1.HTTPDownloader WARNING bad 
status from http seed: 404
2009-02-23 08:48:38,424 MainThread DebTorrent.BT1.HTTPDownloader WARNING bad 
status from http seed: 404
2009-02-23 08:48:38,504 MainThread DebTorrent.BT1.PiecePicker INFO Next piece 
to download/request: 5084
2009-02-23 08:48:38,504 MainThread DebTorrent.BT1.HTTPDownloader INFO 
downloading piece 5084
2009-02-23 08:48:38,544 MainThread DebTorrent.BT1.HTTPDownloader WARNING bad 
status from http seed: 404
2009-02-23 08:48:39,560 MainThread DebTorrent.BT1.PiecePicker INFO Next piece 
to download/request: 563
2009-02-23 08:48:39,560 MainThread DebTorrent.BT1.HTTPDownloader INFO 
downloading piece 563
2009-02-23 08:48:39,616 MainThread DebTorrent.BT1.HTTPDownloader WARNING bad 
status from http seed: 404
2009-02-23 08:48:40,404 MainThread DebTorrent.BT1.PiecePicker INFO Next piece 
to download/request: 12113
2009-02-23 08:48:40,404 MainThread DebTorrent.BT1.HTTPDownloader INFO 
downloading piece 12113
2009-02-23 08:48:40,428 MainThread DebTorrent.BT1.PiecePicker INFO Next piece 
to download/request: 101
2009-02-23 08:48:40,428 MainThread DebTorrent.BT1.HTTPDownloader INFO 
downloading piece 101
2009-02-23 08:48:40,444 MainThread DebTorrent.BT1.HTTPDownloader WARNING bad 
status from http seed: 404
2009-02-23 08:48:40,484 MainThread DebTorrent.BT1.HTTPDownloader WARNING bad 
status from http seed: 404
2009-02-23 08:48:40,548 MainThread DebTorrent.BT1.PiecePicker INFO Next piece 
to download/request: 5084

I'm not sure how to tell which torrent these pieces are from, which may be
an important diagnostic, so if somebody could tell me how to find that, I'll
do so and add it to this bug report.

Whatever the reason, howeer, it seems to me that repeatedly trying to
download a piece from a web server that claims it doesn't exist must
indicate something a little more worrying than just a large log file!

Note, however, that the piece numbers do change, each piece appearing in the
log for around a day or so.

Cheers  God bless
Sam SammyTheSnake Penny


-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable'), (1, 'experimental')
Architecture: i386 (x86_64)

Kernel: Linux 2.6.26-1-vserver-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages debtorrent depends on:
ii  adduser   3.110  add and remove users and groups
ii  python2.5.2-3An interactive high-level object-o
ii  python-apt0.7.8  Python interface to libapt-pkg
ii  python-debian 0.1.12 Python modules to work with Debian
ii  python-support0.8.7  automated rebuilding support for P

Versions of packages debtorrent recommends:
ii  apt-transport-debtorrent 0.2.1   an APT transport for communicating
ii  python-crypto2.0.1+dfsg1-2.3 cryptographic algorithms and proto

Versions of packages debtorrent suggests:
ii  python-psyco  1.6-1  Python specializing compiler

-- 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#489857: clunky workaround

2009-02-18 Thread sam penny
A workaround that I've just implemented and works fairly well, despite being a 
little clunky is as follows:

in /etc/hosts set an alias for each of the repositories you reference in 
sources.list such that they all resolve to the debtorrent-client demon

e.g.

127.0.0.1localhost ftp.uk.debian.org.debtorrent 
www.debian-multimedia.org.debtorrent [etc.]

then modify /etc/apt/sources accordingly

e.g.
deb debtorrent://localhost/ftp.uk.debian.org/debian/ lenny main
becomes
deb debtorrent://ftp.uk.debian.org.debtorrent/ftp.uk.debian.org/debian/ lenny 
main

and then apt-cache policy will report the hostname ftp.uk.debian.org.debtorrent 
rather than localhost


Cheers  God bless
Sam SammyTheSnake Penny






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



Bug#515753: /usr/bin/debtorrent-client: exception report

2009-02-17 Thread Sam Penny
Package: debtorrent
Version: 0.1.9
Severity: important
File: /usr/bin/debtorrent-client


I've been getting large numbers of errors in my log file like the following
and meantime the apt-get / aptitude process that was asking for files sits
and waits for a timeout. I'm happy to give more details, but I'm not sure
what details are the pertinent ones, so I'll keep an eye on this bug so I
can respond to any requests for further information.

The issue surfaced over the weekend of the lenny go-live, I don't know if
that is relevant or not!

Again, I'm not sure if it makes a difference, but this debtorrent is running
in an i386 chroot on an amd64 machine.

I've tried commenting out various debtorrent lines in my sources.list but I
haven't managed to pin the problem on any one line.

Example error follows:

2009-02-17 12:48:43,220 MainThread DebTorrent.RawServer ERROR RawServer 
exception occurred
Traceback (most recent call last):
  File /var/lib/python-support/python2.5/DebTorrent/RawServer.py, line 339, 
in listen_forever
self.sockethandler.handle_events(events)
  File /var/lib/python-support/python2.5/DebTorrent/SocketHandler.py, line 
572, in handle_events
s.handler.data_came_in(s, data)
  File /var/lib/python-support/python2.5/DebTorrent/HTTPHandler.py, line 644, 
in data_came_in
if not c.data_came_in(data) and not c.closed:
  File /var/lib/python-support/python2.5/DebTorrent/HTTPHandler.py, line 229, 
in data_came_in
self.next_func = self.next_func(val)
  File /var/lib/python-support/python2.5/DebTorrent/HTTPHandler.py, line 338, 
in read_header
r = self.handler.getfunc(self, self.path, self.headers, newrequest)
  File /var/lib/python-support/python2.5/DebTorrent/BT1/AptListener.py, line 
809, in get
return self.get_cached(connection, path, headers, httpreq)
  File /var/lib/python-support/python2.5/DebTorrent/BT1/AptListener.py, line 
387, in get_cached
self.identifiers.get('/'.join(path), None))
  File /var/lib/python-support/python2.5/DebTorrent/BT1/makemetafile.py, line 
765, in __init__
r, filename = self.cache.cache_get(down_path, True)
  File /var/lib/python-support/python2.5/DebTorrent/HTTPCache.py, line 518, 
in cache_get
if self.check_mtime(last_modified, file = file)  0:
  File /var/lib/python-support/python2.5/DebTorrent/HTTPCache.py, line 609, 
in check_mtime
http_mtime = timegm(strptime(http_mtime_string, time_format+' %Z'))
  File /usr/lib/python2.5/_strptime.py, line 327, in strptime
found = format_regex.match(data_string)
TypeError: expected string or buffer





Cheers  God bless
Sam SammyTheSnake Penny



-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable'), (1, 'experimental')
Architecture: i386 (x86_64)

Kernel: Linux 2.6.26-1-vserver-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages debtorrent depends on:
ii  adduser   3.110  add and remove users and groups
ii  python2.5.2-3An interactive high-level object-o
ii  python-apt0.7.8  Python interface to libapt-pkg
ii  python-debian 0.1.12 Python modules to work with Debian
ii  python-support0.8.7  automated rebuilding support for P

Versions of packages debtorrent recommends:
ii  apt-transport-debtorrent 0.2.1   an APT transport for communicating
ii  python-crypto2.0.1+dfsg1-2.3 cryptographic algorithms and proto

Versions of packages debtorrent suggests:
ii  python-psyco  1.6-1  Python specializing compiler

-- 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#512622: installation of python-aubio gives python syntax warnings

2009-01-22 Thread Sam Penny
Package: python-aubio
Version: 0.3.2-2+b2
Severity: minor


I installed aubio-tools and this is (in relevant part) what happened:

Setting up python-aubio (0.3.2-2+b2) ...
/usr/lib/python2.5/site-packages/aubio/bench/onset.py:114: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/bench/onset.py:150: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/bench/onset.py:175: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/bench/onset.py:208: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/bench/onset.py:247: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/bench/onset.py:278: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/gnuplot.py:158: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/gnuplot.py:168: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/plot/keyboard.py:33: Warning: 'with' 
will become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/plot/keyboard.py:34: Warning: 'with' 
will become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/beat.py:250: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/beat.py:261: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/notes.py:98: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/notes.py:100: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/notes.py:106: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/notes.py:123: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/onset.py:106: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/onset.py:117: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/onset.py:118: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/onset.py:131: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/pitch.py:159: Warning: 'with' will 
become a reserved keyword in Python 2.6
/usr/lib/python2.5/site-packages/aubio/task/pitch.py:173: Warning: 'with' will 
become a reserved keyword in Python 2.6

I've called this a minor rather than a normal or serious bug because lenny
still uses python 2.5 by default but this will become a serious bug at the
point where python 2.6 is the norm, unless it is fixed in the meantime.

I've never used python, so I may be the least qualified to hack at these
files to fix the warnings, but if it's as easy as its proponents say, maybe
I'll give it a go ;-)

I've not yet tried playing with the tool, so I've not checked whether I
should also submit a bug to represent any similar issues with running the
tools themselves, but if I find any, I'll submit them at that point.

Cheers  God bless
Sam SammyTheSnake Penny

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-vserver-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages aubio-tools depends on:
ii  libasound21.0.16-2   ALSA library
ii  libaubio2 0.3.2-2+b2 a library for audio segmentation
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libjack0  0.109.2-5  JACK Audio Connection Kit (librari
ii  liblash2  0.5.4-1+b1 Linux Audio Session Handler (LASH)
ii  python2.5.2-3An interactive high-level object-o
ii  python-aubio  0.3.2-2+b2 python interface for aubio, a libr

aubio-tools recommends no packages.

aubio-tools 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#511764: MP3 files identified as XWD X Window Dump image data

2009-01-14 Thread Sam Penny
Package: file
Version: 4.26-1
Severity: normal


The following files were downloaded from
http://gardnermuseum.com/music/podcast/archives.asp
the other files there are correctly reported as mp3 files (e.g.
theconcert9.mp3: Audio file with ID3 version 2.3, MP3 encoding)

$ file theconcert[1-7].mp3 theconcert10.mp3
theconcert1.mp3:  XWD X Window Dump image data, a, 3473408x33553986x1412562944
theconcert2.mp3:  XWD X Window Dump image data, w, 2818048x33553997x1412562944
theconcert3.mp3:  XWD X Window Dump image data, l, 3604480x33554003x1412562944
theconcert4.mp3:  XWD X Window Dump image data, 5439488x33554003x1412562944
theconcert5.mp3:  XWD X Window Dump image data,  , 3342336x33553987x1412562944
theconcert6.mp3:  XWD X Window Dump image data, 6488064x33554000x1412562944
theconcert7.mp3:  XWD X Window Dump image data, t, 3080192x33553986x1412562944
theconcert10.mp3: XWD X Window Dump image data,  , 2293760x33554000x1412562944
$

I've played at least the beginning of each of these files (they're around 45
minutes each, so I didn't want to play the whole thing for testing!) and can
verify that at least totem thinks they're valid mp3s and can play them.

Cheers  God bless
Sam SammyTheSnake Penny



-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-vserver-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages file depends on:
ii  libc6  2.7-16GNU 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#498606: debtorrent: No status verb for init.d script

2008-09-11 Thread Sam Penny
Package: debtorrent
Version: 0.1.9
Severity: normal
Tags: patch






I'd like to be able to do:

invoke-rc.d debtorrent-client status

and get some kind of summary, at least whether it's running (ideally it'd be
nice to get something about how much memory it's using, if it's currently
fetching / serving files etc.)


The patch below just adds a completely minimal status verb to say whether
the process is running, not running, or apparently crashed

Cheers  God bless
Sam SammyTheSnake Penny





--- debtorrent-client.orig  2008-09-11 14:07:44.0 +0100
+++ debtorrent-client   2008-09-11 14:08:47.0 +0100
@@ -123,8 +123,17 @@
 fi
 ;;
 
+  status)
+if [ -s $PIDFILE ]  kill -0 $(cat $PIDFILE)  /dev/null 21; then
+  echo Running
+elif [ -s $PIDFILE ] ; then
+  echo Died!;
+else
+  echo Not running
+fi
+;;
   *)
-echo Usage: /etc/init.d/debtorrent-client
{start|stop|reload|force-reload|restart}
+echo Usage: /etc/init.d/debtorrent-client
{start|stop|status|reload|force-reload|restart}
 exit 1
 esac
 



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

Kernel: Linux 2.6.26-1-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages debtorrent depends on:
ii  adduser   3.110  add and remove users and groups
ii  python2.5.2-2An interactive high-level object-o
ii  python-apt0.7.7.1Python interface to libapt-pkg
ii  python-debian 0.1.10 Python modules to work with Debian
ii  python-support0.8.4  automated rebuilding support for P

Versions of packages debtorrent recommends:
ii  apt-transport-debtorrent 0.2.1   an APT transport for communicating
ii  python-crypto2.0.1+dfsg1-2.3 cryptographic algorithms and proto

Versions of packages debtorrent suggests:
pn  python-psyco  none (no description available)

-- no debconf information



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



Bug#476282: Even a fresh install exhibits this behaviour

2008-08-06 Thread sam penny
I've just been looking through my /var/log/aptitude(.?.gz) files and
it looks to me that I first installed compiz at this version (compiz
0.6.3~git20080115.0ea58487-1) and upgraded to 0.7.6-3 then to -5,
so I've not at any point upgraded from an earlier version, and I still
had what I would consider a buggy experience of not having the
decoration module enabled by default. This machine's only recently
been installed from scratch (around the middle of june) so it really
doesn't look to me like the issue has to do with pre-existing settings.

Perhaps installing 0.7.x on a clean system would not exhibit have the
no-decorations problem (I've not tested that case), but at the least it
would seem a good idea to have some kind of warning triggered when
starting compiz. Something along the lines of the following might work:

You don't have the decoration module enabled, this may leave you with
an unusable desktop with no window borders etc. To view/set the list of
enabled modules, use
gconftool --get /apps/compiz/general/allscreens/options/active_plugins
and
gconftool --set /apps/compiz/general/allscreens/options/active_plugins 
'[list,of,modules,to,enable]'
or a graphical tool such as ccsm

Does that sound fair?
Certainly, I would expect the default to include the decoration module
in the case that there are no pre-existing settings specifically excluding it.

HTH
Sam SammyTheSnake Penny



  __
Not happy with your email address?.
Get the one you really want - millions of new email addresses available now at 
Yahoo! http://uk.docs.yahoo.com/ymail/new.html



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



Bug#323420: Alternative / Workaround

2008-07-28 Thread sam penny
The metasploit guys appear to be happy to distribute .debs, which might be a 
solution for some people, even if it doesn't allow debian to distribute / 
maintain their own...

http://spool.metasploit.com/pipermail/framework/2007-December/003095.html

Cheers  God bless
Sam SammyTheSnake Penny



  __
Not happy with your email address?.
Get the one you really want - millions of new email addresses available now at 
Yahoo! http://uk.docs.yahoo.com/ymail/new.html



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



Bug#489857: using a debtorrent proxy makes apt-cache policy far less useful

2008-07-08 Thread Sam Penny
Package: debtorrent
Severity: minor


I have debtorrent set up on my machine and I use it for both my etch/amd64
main machine and my lenny/i386 chroot. Because all my source lines in
apt.sources point to localhost, even though the debtorrent proxy then
forwards those requests to about a dozen different locations, when I use
apt-cache policy or the like, it doesn't tell me which of the forwarded-to
servers is implicated. e.g.

[EMAIL PROTECTED]:~$ apt-cache policy ia32-libs-xulrunner 
ia32-libs-xulrunner:
  Installed: (none)
  Candidate: 1.8.1.3-0.2
  Version table:
 1.8.1.3-0.2 0
500 http://localhost etch/main Packages

which doesn't tell me whether it's a real debian package coming from
*.debian.org or if it's coming from backports.org, or some other repository
I might have used to install some particular package.

A quick grep through /var/lib/apt/lists/ shows me it's coming from
debian-multimedia.org, but it's suboptimal having to do that.

Ideally, apt-cache policy (and probalby other places) would include the path
part of the source line in the description, e.g.

500 http://localhost:9988/www.debian-multimedia.org etch/main Packages

on my lenny/i386 chroot, that might be more like this:

500 debtorrent://localhost/www.debian-multimedia.org etch/main Packages

because I use apt-method-debtorrent there (which incidentally is brilliant!)

I can think of other times this change might be useful, for example if there
are multiple separate repositories on the same server, perhaps a mirror
service or the like.



I expect the fix will have to be in apt rather than debtorrent, but as
debtorrent is the special case that exposes the problem, I figured this was
the place to report it. Apologies if this is the wrong place!

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable'), (50, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-amd64
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)



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



Bug#481163: RFP: freenet -- An anonymity and free-speech protecting decentralised darknet system.

2008-05-14 Thread Sam Penny
Package: wnpp
Severity: wishlist

* Package name: freenet
  Version : 0.7.0
  Upstream Author : Ian Clarke (see http://freenetproject.org/lists.html for 
contact details)
* URL : http://freenetproject.org/
* License : GPLv2 + Mantissa license (Modified BSD)
  Programming Lang: Java
  Description : An anonymity and free-speech protecting decentralised 
darknet system.


Freenet is free software which lets you publish and obtain information on
the Internet without fear of censorship. To achieve this freedom, the
network is entirely decentralized and publishers and consumers of
information are anonymous. Without anonymity there can never be true freedom
of speech, and without decentralization the network will be vulnerable to
attack.

Communications by Freenet nodes are encrypted and are routed-through other
nodes to make it extremely difficult to determine who is requesting the
information and what its content is.

See http://freenetproject.org/whatis.html for more info.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable'), (50, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-amd64
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)



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



Bug#481163: RFP: freenet -- An anonymity and free-speech protecting decentralised darknet system.

2008-05-14 Thread sam penny
Would the Experimental, or Volatile repository be suitable for this package? 
Wine has been in main for aeons, despite having a new version released 
approximately fortnightly, so I don't think the short development cycle is *per 
se* a problem, though any updates that change the protocol would need 
accounting for, which is why volatile seems a reasonable route to go.

Sam SammyTheSnake Penny



  __
Sent from Yahoo! Mail.
A Smarter Email http://uk.docs.yahoo.com/nowyoucan.html



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



Bug#442125: Further information

2008-04-30 Thread sam penny
I've come across the same problem (amd64 / lenny / nvidia) and for 
completeness' sake tried it in my i386 chroot, and it appears to work (I've 
only done it remotely, displaying on the screen attached to the remote machine, 
so I can't tell you if it displayed as expected! If somebody could make xmove 
play well with ssh, I'd be chuffed as punch!) so that would lend weight to the 
theory it's a 32/64-bit problem.

HTH
Cheers  God bless
Sam SammyTheSnake Penny




  __
Sent from Yahoo! Mail.
A Smarter Email http://uk.docs.yahoo.com/nowyoucan.html



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



Bug#469840: joe: Variables in single-quoted strings should not be syntax highlighted in PHP

2008-03-07 Thread Sam Penny
Package: joe
Version: 3.5-1.1
Severity: normal
Tags: patch


Syntax highlighting for PHP highlights variables in single-quoted strings.
Only double-quoted strings have variables interpreted, so there is no
meaning to a dollar sign ($) in a single-quoted string and it ought not to
be highlighted.

I'm not intimately familiar with the format of the .jsf files so I may have
missed something, but this change appears to do what I expected.

Cheers  God bless
Sam SammyTheSnake Penny


--- php.jsf.orig2008-03-07 12:56:04.0 +
+++ php.jsf 2008-03-07 12:56:08.0 +
@@ -155,6 +155,7 @@

 :string_sq Constant_sq
*   string_sq
-   $ var_insqstring recolor=-1
\'idle
\\string_sq_esc   recolor=-1




-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable'), (50, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-amd64
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages joe depends on:
ii  libc6  2.3.6.ds1-13etch5 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand

joe recommends no packages.

-- no debconf information



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



Bug#445365: the debtorrent proxy runs as the user clamav rather than daemon or such

2007-10-05 Thread Sam Penny
Package: debtorrent
Version: 0.1.4.1
Severity: normal



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

Kernel: Linux 2.6.18-5-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages debtorrent depends on:
ii  adduser   3.105  add and remove users and groups
ii  python2.4.4-6An interactive high-level object-o
ii  python-support0.7.3  automated rebuilding support for p

Versions of packages debtorrent recommends:
pn  apt-transport-debtorrent   none(no description available)
ii  python-crypto  2.0.1+dfsg1-2 cryptographic algorithms and proto

-- no debconf information



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



Bug#421395: further update

2007-08-03 Thread Sam Penny
the exception thrown by aptitude is

Uncaught
exception: ../../../src/generic/problemresolver/problemresolver.h:2319:
generic_problem_resolverPackageUniverse::generic_problem_resolver(int,
int, int, int, unsigned int, int, const PackageUniverse) [with
PackageUniverse = aptitude_universe]: In context ;[libgnomevfs2-0
1:2.18.1-2 - {fam 2.7.0-12 fam 2.7.0-13}, libgnomevfs2-0 1:2.18.1-2 -
{gnome-mount 0.5-3 gnome-mount 0.6-1+b2}, prelink 0.0.20061201-1 -
{libelfg0 0.8.6-3 libelfg0 0.8.6-4}];-300 on dependency bd=libstdc
++6-4.0-dev 4.0.3-7 - {libstdc++6 4.1.1-21 libstdc++6 4.2-20070712-1
libstdc++6 4.2.1-1}: Assertion bd.broken_under(empty_solution) failed.


and the version of aptitude I'm using is 

aptitude 0.4.5.4 compiled at Jul  3 2007 15:14:18
Compiler: g++ 4.1.3 20070629 (prerelease) (Debian 4.1.2-13)

NCurses version: 5.6
libsigc++ version: 2.0.17



Bug#421395: Another test case

2007-08-03 Thread Sam Penny
Expected behaviour: aptitude can upgrade my packages
Experienced behaviour: aptitude throws an error and gives package
availability summaries that don't sound right!

I'm using testing as of 11AM BST (GMT+ summer time) on 2007-08-03

/etc/apt/sources.list:
deb http://ftp.uk.debian.org/debian/ stable main contrib non-free
deb http://ftp.uk.debian.org/debian/ testing main contrib non-free
deb http://ftp.de.debian.org/debian/ unstable main contrib non-free
deb http://security.debian.org/ testing/updates main contrib non-free

deb http://www.debian-multimedia.org testing main

#deb-src http://ftp.uk.debian.org/debian/ testing main contrib non-free
#deb-src http://ftp.de.debian.org/debian/ testing main contrib non-free
#deb-src http://ftp.uk.debian.org/debian/ unstable main contrib non-free
#deb-src http://ftp.de.debian.org/debian/ unstable main contrib non-free
#deb-src http://security.debian.org testing/updates main contrib
non-free


#mplayer
deb http://tonelli.sns.it/pub/mplayer/etc


command: aptitude full-upgrade
output: (edited!)

Reading package lists...
Building dependency tree...
Reading state information...
Reading extended state information...
Initializing package states...
Reading task descriptions...
Building tag database...
The following packages are BROKEN:
  aalib1 apt apt-utils arts aspell-en bridge-utils bsdutils
build-essential 
  bzip2 compiz console-tools coreutils cpp-4.0 dbus dbus-x11
debconf-i18n 
  debhelper debianutils devscripts dhcp-client dosemu dpkg-dev faad
fdutils 
  flashplugin-nonfree fontconfig fontforge freeglut3-dev g++-4.0 gamin 
  gcc-4.0 gcj-4.0 gcjwebplugin gdb gettext-base gij-4.0 gij-4.1 gjdoc 
  glide2-bin gnash grep gstreamer0.10-alsa gstreamer0.8-swfdec gzip 
  hostname iceape-browser iceape-gnome-support iceweasel ifupdown 
  initramfs-tools jackd kaffe-pthreads kaffeine kdebase-bin kdelibs4c2a 
  kexec-tools klogd lapack3 lesstif2 lftp liba52-0.7.4 libaa1-dev
libakode2 
  libart-2.0-2 libarts1-akode libarts1-dev libarts1-mpeglib libarts1c2a 
  libartsc0-dev libasound2-dev libaspell15 libaudio-dev
libaudiofile-dev 
  libavahi-compat-howl0 libavahi-qt3-1 libavc1394-0 libavcodec0d 
  libavcodec1d libavformat1d libavutil1d libbonoboui2-0 libc6-dev
libc6-xen 
  libcairo2 libcairomm-1.0-1 libcapi20-3 libccrtp1-1.5-0 libcdio6 
  libcommoncpp2-1.5-0 libcupsys2-dev libcurl3-gnutls libdb1-compat
libdb4.2 
  libdb4.3 libdbd-mysql-perl libdbi-perl libdbus-1-3 libdbus-glib-1-2 
  libdirectfb-dev libdirectfb-extra libdvdnav4 libdvdread3 libebml0 
  libelfg0 libenchant1c2a libexif12 libexpat1-dev libfaad0 libflac6 
  libflac8 libflash0c2 libfontconfig1 libfreebob0 libfreetype6
libgamin0 
  libgcj6 libgcj6-awt libgconf2-4 libgcrypt11 libgcrypt11-dev libgdbm3 
  libglade2-0 libglib1.2 libglide2 libglu1-xorg-dev libgmp3c2 libgnash0 
  libgnet2.0-0 libgnomecanvas2-0 libgnomeui-0 libgnomeuimm-2.6-1c2a 
  libgnutls11 libgpg-error0 libgphoto2-2 libgphoto2-2-dev
libgphoto2-port0 
  libgsm1 libgstreamer-plugins-base0.10-0 libgstreamer0.8-0 libgtk1.2 
  libgtk2.0-0 libgtkmm-2.4-1c2a libgtkspell0 libhal-dev libhsqldb-java 
  libhunspell-1.1-0 libiec61883-0 libieee1284-3-dev libiso9660-4 
  libjack-dev libjack0 libjasper1 libjpeg62 liblcms1 libldap2 liblo0 
  libltdl3-dev liblua50 liblualib50 liblzo1 libmad0-dev libmatroska0 
  libmdbtools libmimedir0 libmng-dev libmpeg3-1 libmudflap0-dev 
  libmyspell3c2 libmysqlclient15off libnet-daemon-perl libnotify1 
  libnss3-0d libogg0 liboil0.3 libopencdk8 libopenexr2c2a liborange0 
  libotr2 libpam-modules libpam0g libpci2 libplrpc-perl libpopt0 
  libportaudio0 libpostproc0d libpostproc1d libqt3-mt libqt3-mt-dev
librra0 
  libsamplerate0 libsane libsane-dev libsasl2-modules libsdl1.2-dev 
  libsdl1.2debian-alsa libsepol1 libsexy2 libsigc++-1.2-5c102
libslang2-dev 
  libspeex1 libssl0.9.7 libssl0.9.8 libstdc++6-4.0-dev libstlport4.6c2 
  libsvga1-dev libswfdec0.3 libsysfs2 libt1-5 libtar libtasn1-2
libtasn1-3 
  libterm-size-perl libtext-template-perl libtext-wrapi18n-perl 
  libtextwrap1 libtheora0 libtool libtwolame0 libufsparse libungif4g 
  libuninameslist0 libunshield0 libusb-0.1-4 libuuid1 libvcdinfo0
libvlc0 
  libvorbis-dev libvorbisfile3 libwxgtk2.6-0 libxau-dev libxdmcp6 
  libxext-dev libxext6 libxi-dev libxine1-ffmpeg libxinerama-dev 
  libxinerama1 libxkbfile-dev libxkbfile1 libxml2 libxmuu1 libxp6 
  libxrandr-dev libxrender-dev libxrender1 libxslt1-dev libxslt1.1
libxss1 
  libxtrap6 libxxf86dga1 libzrtpcpp-0.9-0 login lsb-base makedev man-db 
  menu mktemp module-assistant module-init-tools mpeglib myspell-en-gb 
  myspell-en-us mysql-client-5.0 ncurses-base ncurses-bin netbase 
  notification-daemon nvidia-glx-dev nvidia-kernel-source openarena 
  openbsd-inetd openoffice.org-base openoffice.org-calc 
  openoffice.org-common openoffice.org-core openoffice.org-draw 
  openoffice.org-hyphenation-en-gb openoffice.org-impress 
  openoffice.org-java-common openoffice.org-l10n-en-gb
openoffice.org-math 
  openoffice.org-thesaurus-en-us 

Bug#412475: iceweasel: firefox mentioned in error messsage when running as root

2007-02-26 Thread Sam Penny
Package: iceweasel
Version: 2.0.0.2+dfsg-1
Severity: minor
Tags: patch

When running iceweasel as root, I get the following error message:

[EMAIL PROTECTED]:~# iceweasel --version
You should really not run firefox through sudo WITHOUT the -H option.
Anyway, I'll do as if you did use the -H option.
Mozilla Iceweasel 2.0.0.2, Copyright (c) 1998 - 2007 mozilla.org

And it should, of course, use iceweasel instead of firefox here.

I've attached a patch, which is probably in the wrong format, as I'm not a
debian developer! I hope it's helpful, though :)

In case you were wondering why I was running iceweasel as root, it was an
accident after I upgraded from 2.0.0.1+dfsg-2 to 2.0.0.2+dfsg-1 to check
whether the --version option now mentioned iceweasel, which it does!

Cheers  God bless
Sam SammyTheSnake Penny



--- debian/iceweasel-runner~2007-02-26 10:22:20.0 +
+++ debian/iceweasel-runner 2007-02-26 10:22:20.0 +
@@ -26,7 +26,7 @@
 if [ ${SUDO_USER} ]  [ ${SUDO_USER} != ${USER} ]; then
 SUDO_HOME=`getent passwd ${SUDO_USER} | cut -f6 -d:`
 if [ ${SUDO_HOME} = ${HOME} ]; then
-echo You should really not run firefox through sudo WITHOUT the -H
  option. 2
+echo You should really not run iceweasel through sudo WITHOUT the
-H option. 2
 echo Anyway, I'll do as if you did use the -H option. 2
 HOME=`getent passwd ${USER} | cut -f6 -d:`
 if [ -z ${HOME} ]; then






-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-amd64
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages iceweasel depends on:
ii  debianutils   2.17   Miscellaneous utilities specific t
ii  fontconfig2.4.2-1generic font configuration library
ii  libatk1.0-0   1.12.4-2   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-11   GNU C Library: Shared libraries
ii  libcairo2 1.2.4-4The Cairo 2D vector graphics libra
ii  libfontconfig12.4.2-1generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-21 GCC support library
ii  libglib2.0-0  2.12.4-2   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-5   The GTK+ graphical user interface 
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libmyspell3c2 1:3.1-18   MySpell spellchecking library
ii  libpango1.0-0 1.14.8-5   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libstdc++64.1.1-21   The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.3-5  X11 client-side library
ii  libxft2   2.1.8.2-8  FreeType-based font drawing librar
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxrender1   1:0.9.1-3  X Rendering Extension client libra
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  psmisc22.3-1 Utilities that use the proc filesy
ii  zlib1g1:1.2.3-13 compression library - runtime

iceweasel recommends no packages.

-- no debconf information


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



Bug#330706: freenet-unstable: package spectacularly out of date

2005-09-29 Thread Sam Penny
Package: freenet-unstable
Version: 0.4.3+20020413-2
Severity: grave
Justification: renders package unusable

Nobody out there is still using version 0.4, there have been two major
point releases since that version was current and a third is in the
works. Unfortunately, the nature of this package means that using a
significantly out of date version will not work unless a large number of
others are also using that version.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.26
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages freenet-unstable depends on:
ii  adduser   3.67   Add and remove users and groups
ii  debconf   1.4.58 Debian configuration management sy
ii  debianutils   2.14.3 Miscellaneous utilities specific t
ii  gij-4.0 [java-virtual-machine 4.0.1-2The GNU Java bytecode interpreter
ii  j2re1.4 [java-virtual-machine 1.4.2.02-1 Blackdown Java(TM) 2 Runtime Envir
ii  kaffe 2:1.1.5-3  A JVM to run Java bytecode
ii  kaffe-pthreads [kaffe]2:1.1.5-3  A POSIX threads enabled version of
ii  net-tools 1.60-15The NET-3 networking toolkit

freenet-unstable recommends no packages.

-- debconf information:
* freenet-unstable/storeSize: 209715200
  freenet-unstable/missing-address:
* freenet-unstable/ipAddress: 127.0.0.1
  freenet-unstable/services: fproxy
  freenet-unstable/port-not-a-short:
  freenet-unstable/bigfile-supported: false
  freenet-unstable/address-means-nontransient:
  freenet-unstable/listenPort: 21615
  freenet-unstable/size-not-a-number:


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