Bug#997853: bluez: Fixed by removing local override

2021-12-11 Thread Chris Halls
Package: bluez
Followup-For: Bug #997853

Hi, I just encountered the same problem when upgrading a machine from
Buster to Bullseye.

I also had the same override filename, and I had also put a link to
where it came from:

➜  ~ cat /etc/systemd/system/bluetooth.service.d/01-disable-sap-plugin.conf
# 
https://raspberrypi.stackexchange.com/questions/40839/sap-error-on-bluetooth-service-status
# SIM Access profile problem
[Service]
ExecStart=
ExecStart=/usr/lib/bluetooth/bluetoothd --noplugin=sap

I had used this as a workaround for the bluetooth services failing to
start due to a sap driver failure. It looks like this problem no longer
exists on Bullseye so you are safe to remove the file:

# rm /etc/systemd/system/bluetooth.service.d/01-disable-sap-plugin.conf
# systemctl daemon-reexec
# systemctl restart bluetooth

You should find it works after that.

Chris

-- System Information:
Debian Release: 11.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.10.0-9-amd64 (SMP w/4 CPU threads)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages bluez depends on:
ii  dbus 1.12.20-2
ii  init-system-helpers  1.60
ii  kmod 28-1
ii  libasound2   1.2.4-1.1
ii  libc62.31-13+deb11u2
ii  libdbus-1-3  1.12.20-2
ii  libdw1   0.183-1
ii  libglib2.0-0 2.66.8-1
ii  libreadline8 8.1-1
ii  libudev1 247.3-6
ii  lsb-base 11.1.0
ii  udev 247.3-6

bluez recommends no packages.

Versions of packages bluez suggests:
ii  pulseaudio-module-bluetooth  14.2-2

-- no debconf information


Bug#997818: wireplumber: Failed to preset unit, file /etc/systemd/user/pipewire-session-manager.service already exists

2021-10-25 Thread Chris Halls
Package: wireplumber
Version: 0.4.4-1
Severity: normal

Hi,

I had pipewire-media-session installed on this box and tried an upgrade
of pipewire. pipewire-media-session had to be removed due to lack of
dependencies, but it appears that was not enough to prevent it from
causing an issue with wireplumber:

Removing pipewire-media-session (0.3.38-2) ...
(Reading database ... 324735 files and directories currently installed.)
Preparing to unpack .../00-pipewire-pulse_0.3.39-1_amd64.deb ...
Unpacking pipewire-pulse (0.3.39-1) over (0.3.38-2) ...
[...]
Setting up libwireplumber-0.4-0:amd64 (0.4.4-1) ...
Setting up libpipewire-0.3-modules:amd64 (0.3.39-1) ...
Setting up libpipewire-0.3-dev:amd64 (0.3.39-1) ...
Setting up pipewire-bin (0.3.39-1) ...
Setting up pipewire:amd64 (0.3.39-1) ...
Setting up wireplumber (0.4.4-1) ...
Failed to preset unit, file /etc/systemd/user/pipewire-session-manager.service 
already exists and is a symlink to 
/lib/systemd/user/pipewire-media-session.service.
Created symlink /etc/systemd/user/pipewire.service.wants/wireplumber.service → 
/usr/lib/systemd/user/wireplumber.service.
/usr/bin/deb-systemd-helper: error: systemctl preset failed on 
wireplumber.service: No such file or directory



-- System Information:
Debian Release: 11.1
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 
'stable-security'), (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 5.10.0-9-amd64 (SMP w/16 CPU threads)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages wireplumber depends on:
ii  init-system-helpers   1.60
ii  libc6 2.31-13+deb11u2
ii  libglib2.0-0  2.66.8-1
ii  libpipewire-0.3-0 0.3.39-1
ii  libwireplumber-0.4-0  0.4.4-1
ii  pipewire  0.3.39-1

Versions of packages wireplumber recommends:
ii  pipewire-pulse  0.3.39-1

wireplumber suggests no packages.

-- no debconf information



Bug#936020: /var/lib/dpkg/info/sympa.prerm: 33: [: =: unexpected operator upon removal

2020-12-08 Thread Chris Halls

reassign 936020 dbconfig-common

tags 936020 + patch

thanks


Hello

On Thu, 29 Aug 2019 12:36:50 +0200 Olivier Berger 
 wrote:


> >> /var/lib/dpkg/info/sympa.prerm: 33: [: =: unexpected operator

This comes from dbconfig-common, not directly from sympa itself.

The problem happens if there is no database configured when the prerm 
script is invoked. I was able to trigger this on another package by 
installing without a database (question dbconfig-install=false), and 
then running dpkg-reconfigure on the package.


Patched attached to add the missing quotes.

Thanks

Chris

diff --git a/dpkg/prerm b/dpkg/prerm
index c400ce0..ed18130 100644
--- a/dpkg/prerm
+++ b/dpkg/prerm
@@ -30,7 +30,7 @@ dbc_go(){
 else
 need_admin_pw="yup"
 # Note: dpkg/config has the same code
-if [ $dbc_dbtype = mysql ] && _dbc_mysql_get_debian_sys_maint ; then
+if [ "$dbc_dbtype" = mysql ] && _dbc_mysql_get_debian_sys_maint ; then
 db_set $dbc_package/$dbc_dbtype/admin-user "$dbc_dbadmin"
 db_fset $dbc_package/$dbc_dbtype/admin-user seen true
 db_set $dbc_package/$dbc_dbtype/admin-pass "$dbc_dbadmpass"


Bug#930543: chromium-driver: Will not start browser if a newer chrome is installed

2019-06-14 Thread Chris Halls
Package: chromium-driver
Version: 73.0.3683.75-1
Severity: important

Hi

My chromiumdriver stopped working recently with an odd error message:

% python3 -c "from selenium import webdriver; webdriver.Chrome()"
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/python3/dist-packages/selenium/webdriver/chrome/webdriver.py", 
line 81, in __init__
desired_capabilities=desired_capabilities)
  File "/usr/lib/python3/dist-packages/selenium/webdriver/remote/webdriver.py", 
line 157, in __init__
self.start_session(capabilities, browser_profile)
  File "/usr/lib/python3/dist-packages/selenium/webdriver/remote/webdriver.py", 
line 252, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
  File "/usr/lib/python3/dist-packages/selenium/webdriver/remote/webdriver.py", 
line 321, in execute
self.error_handler.check_response(response)
  File 
"/usr/lib/python3/dist-packages/selenium/webdriver/remote/errorhandler.py", 
line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.SessionNotCreatedException: Message: session not 
created: Chrome version must be between 70 and 73
  (Driver info: chromedriver=73.0.3683.75,platform=Linux 4.19.0-5-amd64 x86_64)

Given that my chromium was indeed version 73, it took me a while to find
out what was happening. Strace gave the answer:

% strace -q -f -e trace=execve python3 -c "from selenium import webdriver; 
webdriver.Chrome()"
[...]
[pid 12780] execve("/usr/bin/chromedriver", ["/usr/bin/chromedriver", 
"--port=54905"], 0x7f952aeb2df8 /* 62 vars */) = 0
[pid 12787] execve("/usr/bin/google-chrome", ["/usr/bin/google-chrome", 
"--disable-background-networking", "--disable-client-side-phishing-d"..., 
"--disable-default-apps", "--disable-hang-monitor", "--disable-popup-blocking", 
"--disable-prompt-on-repost", "--disable-sync", "--disable-web-resources", 
"--enable-automation", "--enable-blink-features=ShadowDO"..., 
"--enable-logging", "--force-fieldtrials=SiteIsolatio"..., 
"--ignore-certificate-errors", "--load-extension=/tmp/.org.chrom"..., 
"--log-level=0", "--metrics-recording-only", "--no-first-run", 
"--password-store=basic", "--remote-debugging-port=0", "--test-type=webdriver", 
"--use-mock-keychain", "--user-data-dir=/tmp/.org.chromi"..., "data:,"], 
0x7ffefe6e9090 /* 62 vars */) = 0

I have the Chrome stable packages installed (due to an issue with Meet
hanging with Chromium). So my /usr/bin/google-chrome points to

 % readlink -f /usr/bin/google-chrome
/opt/google/chrome/google-chrome

If I move /usr/bin/google-chrome out of the way, it starts chromium
instead:

% sudo mv /usr/bin/google-chrome /usr/bin/google-chrome.disable
% strace -q -f -e trace=execve python3 -c "from selenium import webdriver; 
webdriver.Chrome()"
[...]
[pid 14105] execve("/usr/bin/chromedriver", ["/usr/bin/chromedriver", 
"--port=51095"], 0x7f6b2e777df8 /* 62 vars */) = 0
[pid 14112] execve("/usr/bin/chromium", ["/usr/bin/chromium", 
"--disable-background-networking", "--disable-client-side-phishing-d"..., 
"--disable-default-apps", "--disable-hang-monitor", "--disable-popup-blocking", 
"--disable-prompt-on-repost", "--disable-sync", "--disable-web-resources", 
"--enable-automation", "--enable-blink-features=ShadowDO"..., 
"--enable-logging", "--force-fieldtrials=SiteIsolatio"..., 
"--ignore-certificate-errors", "--load-extension=/tmp/.org.chrom"..., 
"--log-level=0", "--metrics-recording-only", "--no-first-run", 
"--password-store=basic", "--remote-debugging-port=0", "--test-type=webdriver", 
"--use-mock-keychain", "--user-data-dir=/tmp/.org.chromi"..., "data:,"], 
0x7ffc630f6490 /* 62 vars */) = 0

In case someone wants to try to reproduce this, the package providing
/opt/google/chrome/google-chrome is google-chrome-stable from this
repository:

% cat /etc/apt/sources.list.d/google-chrome.list
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

Thanks
Chris

-- System Information:
Debian Release: 10.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable-debug'), (500, 
'testing-debug'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-5-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages chromium-driver depends on:
ii  chromium 73.0.3683.75-1
ii  libatomic1   8.3.0-6
ii  libc62.28-10
ii  libdbus-1-3  1.12.14-1
ii  libdrm2  2.4.97-1
ii  libevent-2.1-6   2.1.8-stable-4
ii  libexpat12.2.6-1
ii  libfontconfig1   2.13.1-2
ii  libfreetype6 2.9.1-3
ii  libgcc1  1:8.3.0-6
ii  libglib2.0-0 2.58.3-2
ii  libharfbuzz0b2.3.1-1
ii  libicu63 63.1-6
ii  libjpeg62-turbo  1:1.5.2-2+b1

Bug#817860: python-autopep8: Workaround is apt-get install python-pep8

2016-09-28 Thread Chris Halls

Package: python-autopep8
Version: 0.9.1-2
Followup-For: Bug #817860

I confirm that python-autopep8 is necessary.

% autopep8 --versionTraceback (most recent call last):
  File "/usr/bin/autopep8", line 5, in 
from pkg_resources import load_entry_point
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", 
line 2976, in 

@_call_aside
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", 
line 2962, in _call_aside

f(*args, **kwargs)
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", 
line 2989, in _initialize_master_working_set

working_set = WorkingSet._build_master()
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", 
line 660, in _build_master

ws.require(__requires__)
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", 
line 968, in require

needed = self.resolve(parse_requirements(requirements))
  File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", 
line 854, in resolve

raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'pep8>=1.4.5' distribution was 
not found and is required by autopep8


% sudo apt-get --yes install python-pep8[...]
Unpacking python-pep8 (1.7.0-4) ...
Setting up python-pep8 (1.7.0-4) ...

% autopep8 --versionautopep8 0.9.1

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable-debug'), (500, 
'testing-debug'), (500, 'unstable'), (1, 'experimental')

Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages python-autopep8 depends on:
ii  pep81.7.0-4
ii  python  2.7.11-2

python-autopep8 recommends no packages.

python-autopep8 suggests no packages.

-- no debconf information



Bug#805349: Fix / workaround on github

2015-11-17 Thread Chris Halls
Control: tags -1 fixed-upstream patch 

I found this commit upstream, which solves the import issue:

  
https://github.com/antong/ldaptor/commit/0b9618fa4d4133f7909186eb9384520f5a2bd7b7



Bug#805349: /usr/bin/ldaptor-search: ldaptor-search - AttributeError: 'module' object has no attribute 'UsageError'

2015-11-17 Thread Chris Halls
Package: ldaptor-utils
Version: 0.0.43+debian1-7
Severity: important
File: /usr/bin/ldaptor-search

ldaptor-search shows this error when started:

% ldaptor-search 
Traceback (most recent call last):
  File "/usr/bin/ldaptor-search", line 55, in 
  except usage.UsageError, ue:
  AttributeError: 'module' object has no attribute 'UsageError'


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

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

Versions of packages ldaptor-utils depends on:
ii  python  2.7.9-1
ii  python-ldaptor  0.0.43+debian1-7

ldaptor-utils recommends no packages.

ldaptor-utils suggests no packages.

-- no debconf information



Bug#799251: libreoffice-calc: can't create pivot table in Calc since no mouse dragging possible

2015-09-17 Thread Chris Halls
tags 799251 confirmed
reassign 799251 libreoffice-gtk3
found 799251 1:5.0.1-1
found 799251 1:5.0.1-1~bpo8+2
notfound 799251 1:4.3.3-2+deb8u1
forward 799251 https://bugs.documentfoundation.org/show_bug.cgi?id=93054
thanks

Hi

On 17/09/15 10:43, Beatrice Torracca wrote:
> Since the upgrade at this version on my system I am not able to create
> pivot-tables anymore in LibreOffice calc since in the "Pivot Table
> Layout" window/dialog it is impossible to drag items. I click on an
> item (which gets highlited) but when I drag it (no dragging is shown,
> I just see the pointer moving) and release it in the field nothing
> happens.

Thanks for reporting this. I've confirmed the behaviour on the unstable
packages and on a build from the 5.1 branch. The problem affects drag
and drop in general, not just pivot tables.

It is possible to work around this as follows:

 1. Make sure no other window of libreoffice is open
 2. Run the following command to start libreoffice or calc:
   SAL_USE_VCLPLUGIN=gtk localc

Please can you confirm that you no longer have the problem in this case?

Thanks
Chris



Bug#799251: libreoffice-calc: can't create pivot table in Calc since no mouse dragging possible

2015-09-17 Thread Chris Halls
Hi

On 17/09/15 14:19, Beatrice Torracca wrote:
> I am sorry to say that I still have the same problem. I even tried
> rebooting to be sure no libreoffice prog was hiding in the background.

Okay, maybe that wasn't the best way to try it. Could you try removing
the libreoffice-gtk3 package from your system, and then restarting LO?
You'll find it will remove the libreoffice-gnome package in the process.

Thanks
Chris



Bug#795131: segfault in libvclplug_gtk3lo.so to use gcc5 libraries

2015-09-14 Thread Chris Halls
Hi there

Thanks for the report. Is it possible you have the same problem as bug
#798591, which is reproduced by a long click?

On 14/09/15 16:06, js wrote:
> My environment uses only xfce and does not have gnome components running. I 
> have the xfce4-clipman
> (from xfce4-goodies package installed) but it was not running; no other 
> clipboard manager is installed.

Intersting, thanks for that.

> These segfaults happened every few minutes when modifying a simple drawing 
> with only a few
> rectangles on it, but I did not have a sequence to reproduce it. I was unable 
> to make this
> happen with --backtrace on.

Could you try running libreoffice under gdb directly? Hopefully that
should return control to gdb when the crash occurs.

Thanks
Chris



Bug#798809: [libreoffice-impress] Deleting and pasting slides in Impress trigger 100% CPU and freeze UI

2015-09-13 Thread Chris Halls
Hi Michael

On 13/09/15 08:56, Michael Johnson wrote:
> Since I upgraded to 5.0, Impress slows to unusability any time I attempt
> to delete or paste slides. I primarily use it on a document with roughly
> 80-100 slides that I copy and update weekly, so it may have a lot of
> cruft in it. However, it shouldn't take a whole minute to delete 20
> slides, let alone the 20 minutes it has taken on at least one occasion.
> 
> I've reduced the document to a seemingly minimum number of slides, but
> it's still 13MiB on disk. If it's ok to upload something of that size
> here, I will do so.

Thanks for the report. I've not been able to reproduce the problem here
without the document, so it would be useful to see the document. I can't
find any documented limits to attachment sizes in Debian's bug system,
but you could try emailing it to me, or sharing with me via Google drive
or Dropbox or similar.

Thanks
Chris



Bug#798591: libreoffice: Long click closes Libre Office 5

2015-09-11 Thread Chris Halls
tags 798591 unreproducible moreinfo
thanks

Hi

On 10/09/15 22:30, Junior Polegato wrote:
> I updated some machines with the version 5 of Libre Office and now when user
> holds the left button of mouse to select some text or cells, the program
> closes, losing user data.

Oh dear, that doesn't sound good :(

> I noticed that this happened when the user holds and doesn't move the mouse,
> like a long click. Whatever, if he clicks, holds and moves the mouse, this
> doesn't happen.

I'm afraid I can't reproduce the problem here. I'm going to ask some
questions that will hopefully help us work out what is happening.

Is there a particular sequence of events that you need to trigger the
problem, or is it every time you hold the mouse button down?

You mentioned that you have upgraded some machines. Are you able to
reproduce the problem on different machines?

It's possible that there are some library incompatibilities caused by
the gcc 5 transition. Could you check if all packages are at their
newest version from unstable?

If you can easily reproduce the problem, could you try to get a stack
trace for us?

-
# Install debug symbols. These are quite big, so if you don't have
enough bandwidth or disk space, skip this step for now

apt-get install --no-install-recommends libreoffice-dbg

# We need gdb installed to generate the backtrace
apt-get install gdb

# Start libreoffice using '--backtrace'

loffice --backtrace

# Make it crash!

# Then send the file gdbtrace.log, which will be in your current working
directory where you started libreoffice from
-

Thanks!
Chris



Bug#790760: libreoffice: Writer becomes sluggish after pasting the filename, copied from its filesave dialog (xfce desktop)

2015-09-09 Thread Chris Halls
Hello

On 01/07/15 17:08, Daniel Thomae wrote:
> I wanted to copy the filename of one libreoffice draw-file into another.

> To reproduce the problem you can generate a new text document with 
> LibreOffice.
> After that you open the file save dialog (Strg + S) and just copy the proposed
> file name from the file save dialog. Then you close the file save dialog, you
> don't have to save the file. If you paste that copied filename into the new
> text document LibreOffice gets very sluggish and displays new written text 
> only
> with considerably delay. (At least on an 1,6 GHz AMD K8 @ AMD64)

Thanks for your description of the bug. In addition to the above steps
as mentioned, it is also necessary to have the libreoffice-gtk package
installed. I was not able to reproduce on a KDE desktop, but could
reproduce on an XFCE desktop. I've attached a backtrace.

I was able to reproduce the problem on stable and unstable (1:5.0.1-1).
But on a current build from git master, I am no longer able to reproduce
the problem. So hopefully the problem will no longer be present when 5.1
is released and packaged.

Next step: Test on 5.1 branch when packaged.

Thanks
Chris
#0  0x7fe557de653d in poll () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x7fe552d84ebc in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7fe552d84fcc in g_main_context_iteration () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7fe5432cf687 in GtkData::Yield (this=0x2127650, bWait=, bHandleAllCurrentEvents=)
at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/vcl/unx/gtk/app/gtkdata.cxx:596
#4  0x7fe55b0083a3 in ImplYield (i_bAllEvents=false, i_bWait=true) at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/vcl/source/app/svapp.cxx:353
#5  Application::Yield () at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/vcl/source/app/svapp.cxx:382
#6  0x7fe55b008425 in Application::Execute () at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/vcl/source/app/svapp.cxx:336
#7  0x7fe55a11a04b in desktop::Desktop::Main (this=0x7ffd98c59c30) at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/desktop/source/app/app.cxx:1605
#8  0x7fe55b00d7b1 in ImplSVMain () at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/vcl/source/app/svmain.cxx:162
#9  0x7fe55b00d802 in SVMain () at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/vcl/source/app/svmain.cxx:196
#10 0x7fe55a137b72 in soffice_main () at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/desktop/source/app/sofficemain.cxx:96
#11 0x004006fb in sal_main () at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/desktop/source/app/main.c:48
#12 main (argc=, argv=) at 
/build/libreoffice-qBdtu7/libreoffice-5.0.1/desktop/source/app/main.c:47



Bug#778774: [libreoffice-calc] crash when values are pasted into cells with formulas

2015-08-28 Thread Chris Halls
tag 778774 + moreinfo
thanks

Hi there, thanks for reporting this bug.

On 19/02/15 16:12, Samy Mezani wrote:
 Package: libreoffice-calc
 Version: 1:4.3.3-2
 Severity: important
 
 Dear Maintainer,
 
 When I want to paste values into blank cells with formulas, localc
 hangs. This problem is new for me et did not occur when cells have
 formulas with a non-blank result.
 
 A example of ODS file is attached. You can reproduce this bug if you
 paste values to C2:D11 cells.

I'm afraid I can't reproduce this here. I tried with stable
(4.3.3-2+deb8u1) and unstable (5.0.1~rc2-1). Can you confirm these steps
are ok to reproduce, and still cause the hang for you?

1. Load the document
2. Select cell A2, Copy
3. Select cell C3, Paste.

Thanks
Chris



Bug#677567: ITP: sablecc -- Object-oriented fully featured parser generator

2012-06-15 Thread Chris Halls
On Fri, Jun 15, 2012 at 12:03:32PM +0300, Antti-Juhani Kaijanaho wrote:
 Could you please add to it the changelog entries from the previous Debian
 package, which was removed some years ago due to lack of maintenance? 

Sure, sorry about that.

I've already uploaded a package (which didn't include those entries),
but I've added it to my directory for the next upload.

Thanks
Chris



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



Bug#677571: ITP: gwt -- Google Web Toolkit dev and runtime libraries

2012-06-15 Thread Chris Halls
On Fri, Jun 15, 2012 at 11:57:02PM +0200, Damien Raude-Morvan wrote:
 There is already a gwt package in unstable [1] 

Sorry I had already realised this and closed this bug report again.
One of the other gwt dependencies had been removed completely, and gwt
has been removed from testing but not unstable.

 (and it seems to be maintained by members of eucalytus team).
 Do you plan to replace this package or provide a new gwt2 package ?

To update the existing gwt package in unstable. I will be changing
the package maintainer to the pkg-eucalyptus team, with the permission
of the current maintainer of the package, who will remain in the
uploaders.

Chris



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



Bug#677567: ITP: sablecc -- Object-oriented fully featured parser generator

2012-06-14 Thread Chris Halls
Package: wnpp
Severity: wishlist
Owner: Chris Halls ha...@debian.org

Package name: sablecc
Version : 3.2
Upstream Author : Etienne M. Gagnon and others
URL : http://www.sablecc.org/
License : LGPL
Programming Lang: Java
Description : Object-oriented fully featured parser generator

 SableCC is a parser generator which generates fully featured
 object-oriented frameworks for building compilers, interpreters and
 other text parsers.
 
 In particular, generated frameworks include intuitive strictly-typed
 abstract syntax trees and tree walkers. SableCC also keeps a clean
 separation between machine-generated code and user-written code.
 
 This package also contains AntTask, a task to invoke SableCC on grammar 
 files.

I am packaging this as it is needed as a dependency for Google Web Toolkit.
It is based on the existing package in Ubuntu.



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



Bug#677569: ITP: jsilver -- Clearsilver templates in pure Java

2012-06-14 Thread Chris Halls
Package: wnpp
Severity: wishlist
Owner: Chris Halls ha...@debian.org

  Package name: jsilver
  Version : 1.0.0
  Upstream Author : David Beaumont, Ben Dodso
  URL : http://code.google.com/p/jsilver
  License : Apache 2.0
  Programming Lang: Java
  Description : Clearsilver templates in pure Java

 JSilver is a pure-Java implementation of Clearsilver. Key benefits of JSilver
 over Clearsilver include:
 
 Performance
  - Templates are only parsed when the file changes - not for each request.
  - Optionally, templates can be compiled directly to Java bytecode, making
rendering super-fast.
  - Once-off template optimization step simplifies template making rendering
   even faster.
  - Internal optimizations to streamline string manipulation.
 
 Avoids the complexities of JNI
  - Avoids the risk of native code taking down the JVM.
  - Avoids JNI marshalling overhead.
  
 Simplifies IDE use (no more forgetting java.library.path).
  - Allows for easy extension in Java
  - API allows template functions to be defined in Java allowing logic to be
pulled out of templates.
  - Custom escaping / text filters can be plugged in.
  - Makes plugging in translations much simpler
(e.g. ?cs var:translate('some.message') ?).
  - API designed with testability in mind.
  - Custom mechanisms can be plugged in for loading templates and caching.
  - Low-level access to template AST for advanced transformations.

I am packaging this as it is needed as a dependency for Google Web Toolkit.
It is based on the existing package in Ubuntu by Alexandre Rossi.




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



Bug#677571: ITP: gwt -- Google Web Toolkit dev and runtime libraries

2012-06-14 Thread Chris Halls
Package: wnpp
Severity: wishlist
Owner: Chris Halls ha...@debian.org

  Package name: gwt (binaries libgwt-dev-java and libgwt-user-java)
  Version : 2.4.0
  Upstream Author : Google Inc
  URL : http://google-web-toolkit.googlecode.com
  License : Apache 2.0
  Programming Lang: Java
  Description : Google Web Toolkit dev and runtime libraries

  Google Web Toolkit (GWT) allows developers to quickly build and
  maintain complex JavaScript front-end applications in the Java
  programming language.

These packages are based on work by Alexandre Rossi, and Charles Plessy.
They will contain the buildtime and runtime libraries from GWT.

Many thanks for the sponsorship of this work by Eucalyptus.



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



Bug#542387: Reported upstream

2009-08-24 Thread Chris Halls
tag 542387 + upstream
tag 542387 + pending
forwarded 542387 http://www.openoffice.org/issues/show_bug.cgi?id=104469
thanks

I've reported this and created a patch, which is attached to the upstream 
report.

Chris



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



Bug#542387: openoffice.org: maximized windows on KDE after OOo restart is forgotten

2009-08-19 Thread Chris Halls
tag 542387 + confirmed
reassign 542387 openoffice.org-gtk
thanks

I reproduced this on a Squeeze KDE desktop. Some observations:

 - Reproducible if openoffice.org-gtk is installed without -gnome
 - Reproducible if -kde is not installed
 - Not reproducible under Gnome desktop with exactly the same configuration
 - I did not find a corresponding upstream bug report

Chris



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



Bug#505879: tagging 505879

2009-02-12 Thread Chris Halls
# Automatically generated email from bts, devscripts version 2.10.35
# Patch in progress
tags 505879 + pending




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



Bug#432221: apt-proxy process running test

2008-11-19 Thread Chris Halls
Hi guys

On Saturday 15 Nov 2008, Geert Stappers wrote:
   Can you use ps -u $user instead of ps -e, to only check processes with
   the aptproxy user?
 
  Yes we can.  Do you think it's better?

 FWIW:  stappers thinks it is better to test for the application.

 After all the aptproxy user could 'www-data' or 'nobody' that is used
 also for other process.

Sorry I should have been more verbose. I meant using this in addition to the 
test for the application, not instead of. So:

Replace

ps -eo cmd | grep -q ^$process

with

ps -f $user -o cmd | grep -q ^$process

(Adding some quotes just in case these variables end up with spaces in them)

Chris



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



Bug#370610: NMU for apt-proxy

2008-11-14 Thread Chris Halls
Hi Xavier

On Friday 14 Nov 2008, Xavier Luthi wrote:
 I've prepared a new package version for apt-proxy.  It's currently an
 NMU but of course, if you've time, you can upload it as a new non-NMU
 revision of the package.

Thanks a lot for making your changes. Do you have an Alioth account? If so 
I'll add you to the project so you can check changes into SVN.

I'm too busy to make an upload before the end of next week, so please go ahead 
with an upload if you want to do it before then.

 You'll find attached the corresponding debdiff, the package itself
 can be downloaded here:
  - URL: http://mentors.debian.net/debian/pool/main/a/apt-proxy

I have some comments on your changes.

 +# see bug #285770
 +if len(value) == 0:
 +return None

 -raise ConfigError(Configuration parse error: [%s] %s %
 (section, option)) +# see bug #285770
 +#raise ConfigError(Configuration parse error: [%s] %s %
 (section, option)) +return None

  value = self.parseConfigValue(config, DEFAULTSECT, name,
 default, getmethod) +# see bug #285770
 +if value == None:
 +value = default
 +# end of bug #285770

These changes feel ugly to me. An empty value, such as 'timeout =' is an error 
in the configuration and I think you should only use the default value if the 
line is not there in the configuration at all.

What about handling the ConfigError exception and giving a proper error 
message instead?

 -self.worker = FileVerifierProcess(self, '/usr/bin/bunzip2',
 '--test', self.path) 
 +self.worker = FileVerifierProcess(self, 
 '/bin/bunzip2', '--test', self.path) else:

Are we sure that bunzip2 will always be found here? It might be better to use 
the system path instead of a hardcoded absolute path.

 +## change process priority as requested in http://bugs.debian.org/275658
 +#   and do that silent
 +renice 5 $$ /dev/null

I think this should be configurable in /etc/default/apt-proxy so that the 
system administrator can turn this off if they need to.

 +process=$(basename $application)

 + sleep 1 # for some startup time and then check
 + ps -eo cmd | grep -q ^$process

Can you use ps -u $user instead of ps -e, to only check processes with the 
aptproxy user?

I am very happy with all of your other changes - thanks!

Chris



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



Bug#502852: openoffice.org: OOo calls removed sensible-ooomua

2008-10-22 Thread Chris Halls
Hi guys

On Monday 20 Oct 2008, Rene Engelhard wrote:
  I tried senddoc but I need to configure/give it the Mailclient which I
  did already in Extras - Optionen - Internet - E-Mail which isn't used
  here. The advantage of kde-open IMHO is that it uses the configuration
  the user/admin did in KDE and not an additional place where to configure
  it.
 
  So the patch would be:
 
  s/sensible-ooomua/kde-open

I had a look at this earlier today but I hadn't written a comment yet (thanks 
Rene for the fix already!). The reason why this used sensible-ooomua is 
because it could fall back to another mailer if the mailer had not been set 
in KDE. But I agree this is ok, since kde-open-url is only used if you are 
using the OOo KDE integration.

It looks like xdg-email (package xdg-utils) is doing the same as our 
autodetection attempts in senddoc. Maybe we should think about using that in 
senddoc?

Chris



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



Bug#472405: apt-proxy: does not handle out-of-diskspace condition correctly

2008-03-25 Thread Chris Halls
tags 472405 confirmed
thanks

On Monday 24 Mar 2008, Yann Dirson wrote:
 I had a apt-get update stuck downloading from apt-proxy.
 Investigation shows the following backtrace in the log.  apt-proxy
 should deal nicely with such a condition, so the clients are not stuck
 waiting for data.

Confirmed, thanks. I had thought there was already a bug report open for this 
one.

Chris



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



Bug#354251: openoffice.org-writer: Confirmation

2008-03-19 Thread Chris Halls
package openoffice.org-writer
found 354251 1:2.3.1-5
found 354251 1:2.4.0~rc6-1
tags 354251 confirmed
thanks

On Monday 18 Feb 2008, Jan Krajicek wrote:
 Openoffice.org 2.3.1 on Lenny still crashes when trying to open the
 document in the attachment of the first reply.

Reproduced on current Lenny and Sid. 

Backtrace:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x2b0bcca58fa0 (LWP 14049)]
0x2dbf9d46 in SwTabFrm::GetTable (this=0x0) at ../inc/tabfrm.hxx:155
155   SwTable *GetTable()   { return pTable; }
(gdb) where
#0  0x2dbf9d46 in SwTabFrm::GetTable (this=0x0) 
at ../inc/tabfrm.hxx:155
#1  0x2dcef102 in SwCntntFrm::ShrinkFrm (this=0x2aaab0c36c40, 
nDist=-392, bTst=0 '\0', bInfo=0 '\0')

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/wsfrm.cxx:2116
#2  0x2dcea12d in SwFrm::Shrink (this=0x2aaab0c36c40, nDist=280, 
bTst=0 '\0', bInfo=0 '\0')

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/wsfrm.cxx:1444
#3  0x2dd05735 in SwTxtFrm::AdjustFrm (this=0x2aaab0c36c40, 
nChgHght=280, bHasToFit=0 '\0')

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/text/frmform.cxx:604
#4  0x2dd3a6f9 in SwTxtFrm::FormatEmpty () 
from /usr/lib/openoffice/program/libsw680lx.so
#5  0x2dd090e9 in SwTxtFrm::Format (this=0x2aaab0c36c40)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/text/frmform.cxx:1975
#6  0x2dc5cee3 in SwCntntFrm::MakeAll (this=0x2aaab0c36c40)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/calcmove.cxx:1436
#7  0x2dc5a849 in SwFrm::PrepareMake (this=0x2aaab0c36c40)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/calcmove.cxx:419
#8  0x2dbfc4f3 in SwFrm::Calc (this=0x2aaab0c36c40) 
at ../inc/frame.hxx:1067
#9  0x2dcde56e in SwTabFrm::MakeAll (this=0x2aaab0c2d340)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/tabfrm.cxx:2814
#10 0x2dc5a74e in SwFrm::PrepareMake (this=0x2aaab0c36c40)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/calcmove.cxx:385
#11 0x2dbfc4f3 in SwFrm::Calc (this=0x2aaab0c36c40) 
at ../inc/frame.hxx:1067
#12 0x2dcd779d in lcl_CalcLowers (pLay=0x2aaab0c2e3c0, 
pDontLeave=0x2aaab0c2d0d0,
nBottom=9223372036854775807, bSkipRowSpanCells=false)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/tabfrm.cxx:1625
#13 0x2dcd832d in lcl_FirstTabCalc (pTab=0x2aaab0c2d0d0)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/tabfrm.cxx:1772
#14 0x2dcdc43c in SwTabFrm::MakeAll (this=0x2aaab0c2d0d0)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/tabfrm.cxx:2287
#15 0x2dc5a849 in SwFrm::PrepareMake (this=0x2aaab0c2d0d0)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/calcmove.cxx:419
#16 0x2dbfc4f3 in SwFrm::Calc (this=0x2aaab0c2d0d0) 
at ../inc/frame.hxx:1067
#17 0x2dc5a4f0 in SwFrm::PrepareMake (this=0x2aaab0c2e3c0)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/calcmove.cxx:320
#18 0x2dbfc4f3 in SwFrm::Calc (this=0x2aaab0c2e3c0) 
at ../inc/frame.hxx:1067
#19 0x2dc5a4f0 in SwFrm::PrepareMake (this=0x2aaab0c2f888)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/calcmove.cxx:320
#20 0x2dbfc4f3 in SwFrm::Calc (this=0x2aaab0c2f888) 
at ../inc/frame.hxx:1067
#21 0x2dc5a4f0 in SwFrm::PrepareMake (this=0x2aaab0c32550)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/calcmove.cxx:320
#22 0x2dbfc4f3 in SwFrm::Calc (this=0x2aaab0c32550) 
at ../inc/frame.hxx:1067
#23 0x2dc9387e in SwLayAction::IsShortCut (this=0x7fffe9716190, 
[EMAIL PROTECTED])

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/layact.cxx:1488
#24 0x2dc94212 in SwLayAction::InternalAction (this=0x7fffe9716190)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/layact.cxx:847
#25 0x2dc953c1 in SwLayAction::Action (this=0x7fffe9716190)

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/layout/layact.cxx:661
#26 0x2dc23245 in ViewShell::ImplEndAction (this=0x10817d0, 
bIdleEnd=0 '\0')

at 
/home/cha/src/oo/openoffice.org-2.4.0~rc6/ooo-build/build/current/sw/source/core/view/viewsh.cxx:306
#27 0x2dbfc69c in ViewShell::EndAction 

Bug#461491: apt-proxy complains about the deprecated protocol and fails to start

2008-01-21 Thread Chris Halls
Hi

On Friday 18 Jan 2008, Wojciech Zabołotny wrote:
 When trying to start, or restart the apt-proxy, I get the following error:

 # apt-proxy restart
 /usr/lib/python2.4/site-packages/twisted/manhole/telnet.py:8:
 # DeprecationWarning: As of Twisted 2.1, twisted.protocols.telnet is
 /deprecated.  See twisted.conch.telnet for the current, supported API.
   from twisted.protocols import telnet
 /usr/sbin/apt-proxy: Wrong number of arguments.

You tried to run apt-proxy directly from the command line. The command you 
should be using is:

/etc/init.d/apt-proxy restart

Does that do what you wanted?

Chris




Bug#436112: apt-proxy: Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: undefined symbol: pkgCPU

2007-08-17 Thread Chris Halls
On Sun, Aug 05, 2007 at 06:45:28PM +0200, Folkert van Heusden wrote:
 Nope, problem persists.

 Failed to load application: /usr/lib/python2.4/site-packages/apt_pkg.so: 
 undefined symbol: pkgCPU

That's a problem with python-apt loading the apt library and would be a
bug in python-apt so I'm surprised its not been spotted already. Maybe
you forced a particular package version or have upgraded apt without
upgrading python-apt? In any case, upgrading your python-apt version
should fix this.

Chris


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



Bug#436011: setting package to apt-proxy, forcibly merging 436011 436319

2007-08-14 Thread Chris Halls
# Automatically generated email from bts, devscripts version 2.10.6
package apt-proxy
# This FTBFS caused by python-apt ABI change
forcemerge 436011 436319



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



Bug#436011: apt-proxy: 'module' object has no attribute 'CPU'

2007-08-13 Thread Chris Halls
Hiya

On Saturday 04 Aug 2007, Mykola Nikishov wrote:
 With this it works fine.

Thanks a lot for testing this and the suggested patch. Unfortunately I found 
that the patch breaks the package database handling. (It is possible to see 
this by comparing the unit tests before and after the patch.)

I think the package database code is probably using the apt library in the 
wrong way - see bug #285360. The original author of the code is no longer 
available so it will take me some time to fix this properly. However it 
passes the unit tests if I set the architecture to 'i386', even if it is not 
going to fix #285360.

Chris


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



Bug#342101: Adding support for apt-proxy as a true proxy (was Re: Bug#342101)

2007-07-01 Thread Chris Halls
tags 342101 - moreinfo
thanks

My idea to solve the problem of apt not understanding multiple backend servers 
is to make it possible to use apt-proxy as a true proxy. So instead of 
changing your client sources.list to point to apt-proxy backends, you would 
configure apt on the client with http::proxy set to the host/port of the 
apt-proxy server. So sources.list could be left essentially unchanged. 
apt-proxy.conf would need a new directive that would map requests to 
backends. Here's an example:

* old client apt.conf
empty

* old client sources.list
deb http://aptproxy:/debian etch main
deb http://aptproxy:/security etch/updates main

* old apt-proxy.conf
[debian]
backends = http://ftp.uk.debian.org/debian

[security]
backends = http://security.debian.org/debian-security

* new client apt.conf
http::proxy http://aptproxy:

* new client sources.list
deb http://ftp.debian.org/debian etch main
deb http://security.debian.org/debian-security etch/updates main

* new apt-proxy.conf
[debian]
matchhost = http://ftp.*.debian.org/debian
backends = http://ftp.uk.debian.org/debian
[security]
backends = http://security.debian.org/debian-security


So, any request that matched a backend path would be automatically mapped to 
the backend, and a new directive allows you to match wildcards in some way, 
where there are multiple servers possible.

This implementation has the advantage of simplifying the client side 
configuration without making the server configuration a lot more complicated.

Chris


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



Bug#309872: Patch will not apply

2007-06-28 Thread Chris Halls
On Thursday 28 June 2007 09:32 am, Geert Stappers wrote:
 The original patch was agianst the function connectionMade
 in the file apt_proxy.py. But the patch will not apply
 without further work, because there is no connectionMade in
 apt_proxy.py.

Thanks for checking this. The place where this belongs is in the download() 
method of FetcherHttpClient (in fetchers.py). It does need reworking to apply 
but the main reason why I haven't yet applied it is becuase I wanted to 
research whether this change in the HTTP client's behaviour is part of the 
HTTP standard, and under what circumstances this change should be applied.

Chris


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



Bug#336784: logging from 1.9.36

2007-06-28 Thread Chris Halls
Hi Geert

Thanks a lot for looking through the old bugs in the Debian BTS today- that's 
really kind of you!

On Thursday 28 June 2007 12:09 pm, Geert Stappers wrote:
/usr/lib/python2.4/site-packages/twisted/manhole/telnet.py:8:
 exceptions.DeprecationWarning: As of Twisted 2.1,
 twisted.protocols.telnet is deprecated.  See twisted.conch.telnet for
 the current, supported API.

Mmm, I'd seen this too, I just hadn't got round to trying to fix it yet.

Thanks
Chris


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



Bug#425535: ca-certificates: install failure: missing mktemp dependency

2007-05-22 Thread Chris Halls
Package: ca-certificates
Version: 20070303
Severity: serious
Justification: Policy 7.2

# apt-get install ca-certificates
[...]
Setting up ca-certificates (20070303) ...
Updating certificates in
/etc/ssl/certs/usr/sbin/update-ca-certificates: line 58: mktemp:
command not found
dpkg: error processing ca-certificates (--configure):
 subprocess post-installation script returned error exit status 127
 Errors were encountered while processing:
  ca-certificates
  E: Sub-process /usr/bin/dpkg returned an error code (1)

This is in a fairly small chroot. There is no mktemp package installed,
which provides /bin/mktemp and fixes the problem:

# apt-get install mktemp ca-certificates
[...]
The following NEW packages will be installed
  mktemp
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  1 not fully installed or removed.
[...]
  Unpacking mktemp (from .../mktemp_1.5-3_amd64.deb) ...
  Setting up mktemp (1.5-3) ...
  Setting up ca-certificates (20070303) ...
  Updating certificates in /etc/ssl/certsdone.

Chris

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

Kernel: Linux 2.6.20-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages ca-certificates depends on:
ii  debconf [debconf-2.0] 1.5.13 Debian configuration management sy
ii  openssl   0.9.8e-5   Secure Socket Layer (SSL) binary a

ca-certificates recommends no packages.

-- debconf information excluded


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



Bug#420217: apt-proxy: does not cleanup expired Packages.diff files

2007-04-20 Thread Chris Halls
Hi Yann, thanks for your report.

On Friday 20 April 2007 20:42, Yann Dirson wrote:
 The contents of Packages.diff directories under /var/cache/apt-proxy/
 should be expired in some way.  Currently it looks like the directory
 just fills up, I have 6 months worth of them.

The max_age parameter should be making sure these do not grow for ever. Is 
your max_age set to 6 months by any chance?

 I'm not sure at all of this woks, but there is an Index file in these
 dirs, with only one week worth of them referenced.  Probably only
 those files still referenced in the Index should be kept.

Yes, that would be a sensible change to make.

Chris


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



Bug#398217: apt-proxy: 15 months later, still happening

2007-03-20 Thread Chris Halls
On Tue, Mar 20, 2007 at 04:30:28PM +1100, Andrew Vaughan wrote:
 After 15 months without a maintainer response, I've decided to send another 
 log 
 extract, just to let you know that apt-proxy still dies regularly.

Hi Andrew

Thanks for your ping. Actually, I already fixed this bug in subversion
but have not had time to finish testing and preparing a release. Here's
the current changelog:

apt-proxy (1.9.36~svn) unstable; urgency=low

  [ Chris Halls ]
  * Acknowledge NMU by Steinar H. Gunderson, thanks! (Closes: #386344)
  * Close a longstanding bug where clients would hang when receiving
files from the cache. The problem was caused by reusing the same
file handle for several requests at once.
(Closes: #274679, #382078, #322242, #397399, #397403, #398217)
  * Change the meaning of min_refresh_delay parameter, so the
delay is measured from the modification time of the file on the
backend instead of the time a client last requested this file.
Now apt-proxy will always query backends when a file is too
old (Closes: #266000)
  * Set process name to apt-proxy
  * Properly deal with escaped characters, including ~ in URLs on FTP
backends. Unescape URLs and check for invalid characters when parsing
a request. A big thanks to Ben Hutchings for the patch
(Closes: #393483, #366262)
  * Fix [EMAIL PROTECTED] given in backend server URLs and add a test case.
Thanks Jason Thomas for the patch (Closes: #348985)
  * Fix exception when sending ftp password to backend (Closes: #387243)
  * Remove extra '/' in HTTP GET requests (Closes: #330492)
  * Uncompress Packages.gz and Packages.bz2 on the fly, and
update databases from these files (Closes: #319005, #303357)
  * Add unit tests for valid URLs containing /../ (Closes: #182855)
  * Remove obsolete GZipFetcher from fetchers.py

  [ Mark Sheppard ]
  * Generate an error if a client attempts to retrieve
http://server:/  (Closes: #386546)
  * When returning an error, generate an HTML page containing the error

Please feel free to give it a try:

svn co svn+ssh://svn.debian.org/svn/apt-proxy/trunk apt-proxy
cd apt-proxy
as root ./aptest

That will run the new version using your existing configuration.

Chris


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



Bug#407203: asterisk-app-fax: receive_fax is not executable

2007-01-16 Thread Chris Halls
Package: asterisk-app-fax
Version: 0.0.20060218-3
Severity: important

After a fresh install:

-- Launched AGI Script /usr/share/asterisk/agi-bin/receive_fax
Failed to execute '/usr/share/asterisk/agi-bin/receive_fax': Permission denied

# dpkg -c /var/cache/apt/archives/asterisk-app-fax_0.0.20060218-3_i386.deb | 
grep receive_fax
-rw-r--r-- root/root  8264 2007-01-03 21:43 
./usr/share/asterisk/agi-bin/receive_fax

'chmod 755 /usr/share/asterisk/agi-bin/receive_fax' worked around it.

Chris

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages asterisk-app-fax depends on:
ii  libc6   2.3.6.ds1-8  GNU C Library: Shared libraries
ii  libspandsp1 0.0.2pre26-1 Telephony signal processing librar

Versions of packages asterisk-app-fax recommends:
ii  gs-common 0.3.11 Common files for different Ghostsc
ii  libconfig-tiny-perl   2.08-1 Read/Write .ini style files with a
ii  libfile-sync-perl 0.09-4 Perl interface to sync() and fsync
ii  liblocale-gettext-perl1.05-1 Using libc functions for internati
ii  libmime-lite-perl 3.01-8 Perl5 module for convenient genera
ii  libpaper-utils1.1.21 Library for handling paper charact
ii  libtiff-tools 3.8.2-7TIFF manipulation and conversion t
ii  psutils   1.17-24A collection of PostScript documen

-- no debconf information


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



Bug#402481: apt-proxy: '500'-error still exists/has returned in version 1.9.35

2006-12-12 Thread Chris Halls
On Sunday 10 December 2006 19:47 pm, Folkert van Heusden wrote:
 When doing something like apt-get update  apt-get upgrade I get
 frequent 500-errors:
 Get: 288 http://192.168.64.99 testing/contrib msttcorefonts 1.5 [29.1kB]
 Errhttp://192.168.64.99 testing/main myspell-en-gb 1:2.0.4~rc1-3
   500 Could not list directory

Hi

Could you attach your /var/log/apt-proxy.log please?

Thanks
Chris


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



Bug#393483: apt-proxy fails on packages with version including '~'

2006-10-31 Thread Chris Halls
Sorry this mail got delayed on my server, resending.

On Tue, Oct 24, 2006 at 10:03:33AM +0200, Jerome Warnier wrote:
 This is still a bug (whoever it belongs to, I don't know) with FTP.
 Perhaps the bug title should say that (on FTP backend).

At a guess this bug will affect all non-http backends. I see that this was
 not being picked up by the unit tests because the test client was sending
 unescaped characters to the test apt-proxy.

Thanks for your help guys
Chris


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



Bug#391869: apt-proxy: calls to bunzip2 fail

2006-10-09 Thread Chris Halls
package apt-proxy
tags 391869 + pending
thanks

Hi, thanks for taking the time to report this bug.

On Monday 09 October 2006 06:41, Vincent McIntyre wrote:
 This appears to be because the path to bunzip2 is wrong:

Hmm, thanks. I hadn't noticed that.

 However afaik this isn't hurting anything, because the log continues:

If file verification fails, apt-proxy will download the file again, i.e. the 
cached copy will never be sent to clients. So that means it is still working, 
but is wasting bandwidth.

 This may also be related to bug #303357.

I think that is a different problem: in that report, the machine is running 
bunzip2 but it is taking longer to verify the file than the apt client is 
prepared to wait.

 I have a related question, please advise if I should file separately.
 I wonder why apt is asking for things that don't exist in the archive; the
 URL
 http://security.debian.org/debian-security/dists/etch/updates/non-free/bina
ry-i386/Packages.diff/Index returns a 404. Afaics this is because there are
 no *.diff/ directories in the security tree. There are in the main archive
 for etch however.

The Packages.diff format is an optional extra that is not present in all 
archives. apt first tries this URL, and if it does not exist, will request 
the complete Packages file. The behaviour you have seen is normal on archives 
that do not have the Packages.diff directory.

 Possibly this is related to #336433 ?

Not really. That bug report asked for apt-proxy to recognise those files on 
servers where those files exist. security.debian.org/debian-security does not 
have those files.

Chris


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



Bug#386562: apt-proxy: support for file:// backends

2006-09-28 Thread Chris Halls
package apt-proxy
severity 386562 normal
retitle 386562 apt-proxy: document file://backends
tags 386562 + confirmed
thanks

On Fri, Sep 08, 2006 at 03:56:03PM +0100, Mark Sheppard wrote:
 Please could support for file:// URLs in backends be supported?  I've
 got ISO images (mounted with -o loop) from which I'd like to serve
 packages with apt-proxy.

Hi Mark

Actually, it's been in since 1.9.32 but was never documented. I hadn't realised
it was not mentioned in the manpage. Just enter a backend server using a
standard file:// url.

Chris


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



Bug#386546: apt-proxy: exception with short URLs

2006-09-28 Thread Chris Halls
tags 386546 + confirmed pending
thanks

Hi Mark

Thanks a lot for your patch! I've merged it into the current development tree
and it will be in the next release.  

Chris


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



Bug#386344: apt-proxy: APT-Proxy has Problems with ~ in package-names

2006-09-07 Thread Chris Halls
package apt-proxy
tags 386344 + moreinfo
thanks

On Wednesday 06 September 2006 23:29, Daniel 'DaB.' Baur wrote:
 Package: apt-proxy
 Version: 1.9.35
 Severity: grave
 Tags: security
 Justification: renders package unusable

 Apt-Proxy can not handle Package, which have the new ~ in there names.
 A example is libkrb5-dev_1.4.4~beta1-1_i386.deb which gives a 404 file not
 found on backend error. Please fix it, because it is unpossible to play in
 any packages or security-updates.

$ sudo apt-get install brazilian-conjugate
[...]
Get: 1 http://aptproxy testing/main brazilian-conjugate 3.0~beta4-1 [104kB]
Fetched 104kB in 0s (153kB/s)

It doesn't seem to be purely down to a '~' in the filename. It might be 
something in your configuration. For example, I am using an http backend but 
you could be using another type. The best thing is to turn on debug info in 
your apt-proxy-v2.conf:

debug = all:9 db:7

Then restart apt-proxy, and send a copy of /var/log/apt-proxy.log for the 
session where you try to get the file. When you do the test, can you also 
please check that the backend server you are using really has the file - 
sometimes mirrors can get out of sync.

Thanks
Chris


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



Bug#373974: not solved, reopen

2006-09-05 Thread Chris Halls
package openoffice.org
found 373974 2.0.3-6
thanks

On Tuesday 29 August 2006 19:37, John McMonagle wrote:
 Think I have some more useful information.
 Still having problems with 2.0.3-6  in both backports and unstable.

 Thought I was going crazy  ;-)
 Some times it worked and some times it didn't.
 Finally figured out the pattern.

 If I open a one document and only one and go to Format - Page can never
 select a paper tray unless I select a printer first.

 What makes it work:
 If I open a document and select a printer via File - Printer Settings
 and select any printer. I have tried writer and calc documents and both
 did the trick.
 Leave this document open.
 After this every thing will work properly. Any previously selected
 printers and tray selections will be set.

 Must do this every time one starts openoffice. Tried oooqs-kde but that
 didn't help.

 Same trick works in the old 2.0.1 from backports.

 Anyhow guess that something is not being initialized properly.


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



Bug#384035: razor-client mentioned in README.Debian is deprecated

2006-08-21 Thread Chris Halls
Package: razor
Version: 2.810-2
Severity: minor

README.Debian says:

Razor requires you to be registered before you can report spam.  For a user to
setup an account with the Vipul's Razor spam-reporting system (highly
recommended) simply run the following commands.[...]

$ razor-client   [creates symbolic links]

But..

$ razor-client
This program is deprecated and no longer necessary. You may begin using Razor 
now.

Thanks for maintaining razor
Chris

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-2-k7
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages razor depends on:
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libdigest-hmac-perl   1.01-3 create standard message integrity 
pn  libdigest-md5-perlnone (no description available)
ii  libdigest-sha1-perl   2.10-1 NIST SHA-1 message digest algorith
pn  libmime-base64-perl   none (no description available)
ii  libnet-dns-perl   0.57-1 Perform DNS queries from a Perl sc
ii  liburi-perl   1.35-2 Manipulates and accesses URI strin
ii  perl [libtime-hires-perl] 5.8.8-6.1  Larry Wall's Practical Extraction 
ii  perl-modules [libtest-simple- 5.8.8-6.1  Core Perl modules

razor recommends no packages.

-- no debconf information


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



Bug#359921: apt-proxy stalls on cache-misses (twisted 2.2 problem?)

2006-08-12 Thread Chris Halls
Hi Toni

On Saturday 12 August 2006 14:22, you wrote:
 I think so, although I currently have some difficulty verifying that,
 due to the twisted 2.4 problem. :-}

Even with the version in unstable (1.9.34)? That should be fixed now.

Chris


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



Bug#359921: apt-proxy stalls on cache-misses (twisted 2.2 problem?)

2006-08-11 Thread Chris Halls
Hi Toni

Thanks for your bug report. 1.9.34 fixed a lot of problems in this code. Am I 
right in thinking you cannot reproduce this problem in that version?

Thanks
Chris


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



Bug#382012: (apt-proxy-import doesn't start after last upgrade

2006-08-08 Thread Chris Halls
severity 382012 serious
tag 382012 + confirmed
thanks

On Tuesday 08 August 2006 11:50, Andreas Pakulat wrote:
 12:50 CEST [-] NameError: global name 'get_mirror_path' is not defined

Gah thanks Andreas. I've been so busy testing the caching that I completely 
overlooked apt-proxy-import.

Chris


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



Bug#382078: apt-proxy: Does not update correctly, apt hangs waiting for headers

2006-08-08 Thread Chris Halls
Hi, thanks for your report.

Does restarting apt-proxy clear the problem, or does it happen every time you 
restart it and then run apt-get?

The logfile doesn't tell me enough about what went wrong. Please could you 
place this in the logfile, in the [DEFAULT] section:

debug = all:9

and then send the log file for the session.

Thanks
Chris


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



Bug#375677: A question about Jose's patch

2006-07-05 Thread Chris Halls
Bill

Thanks a lot for looking at these problems. The codebase has changed a
lot since the version in unstable, and I have fixed a lot of these
problems already. You can see the current code at 

http://svn.debian.org/wsvn/apt-proxy/people/halls/rework/apt_proxy/?rev=0sc=0

I had already modified all calls to deferred.errback() with a Failure()
instance as you suggested. The code works, but the queueing strategy
needs to be changed before I can upload to unstable.

Sorry for the confusion
Chris


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



Bug#376004: xserver-xorg-video-savage: Document how to get DRI working

2006-06-29 Thread Chris Halls
Package: xserver-xorg-video-savage
Version: 1:2.0.2.3-4
Severity: wishlist
Tags: patch

Getting DRI working with the Savage driver in this package is not
documented very well. The main problem I had was that I had not
installed libgl1-mesa-dri, which contains savage_dri.so that is
necessary for DRI acceleration. I would like to add a Suggests: on this
package to control, and I have also documented how to debug these
problems in a new README.Debian for this package. Please could you
consider adding this to the package?

I haven't made libgl1-mesa-dri a Recommends: because it is quite a large
package, and xserver-xorg-video-savage is often installed on machines
where it is not needed.

Chris

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xserver-xorg-video-savage depends on:
ii  libc62.3.6-13GNU C Library: Shared libraries
ii  xserver-xorg-core1:1.0.2-8.1 X.Org X server -- core server

xserver-xorg-video-savage recommends no packages.

-- no debconf information
diff -u xserver-xorg-video-savage-2.0.2.3/debian/changelog 
xserver-xorg-video-savage-2.0.2.3/debian/changelog
--- xserver-xorg-video-savage-2.0.2.3/debian/changelog
+++ xserver-xorg-video-savage-2.0.2.3/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-savage (1:2.0.2.3-4.cjh) unstable; urgency=low
+
+  * Add information about debugging 3D acceleration in README.Debian
+
+ -- Chris Halls [EMAIL PROTECTED]  Thu, 29 Jun 2006 16:35:08 +0100
+
 xserver-xorg-video-savage (1:2.0.2.3-4) unstable; urgency=low
 
   * Upload to modular
diff -u xserver-xorg-video-savage-2.0.2.3/debian/rules 
xserver-xorg-video-savage-2.0.2.3/debian/rules
--- xserver-xorg-video-savage-2.0.2.3/debian/rules
+++ xserver-xorg-video-savage-2.0.2.3/debian/rules
@@ -70,7 +70,7 @@
dh_testdir
dh_testroot
 
-   dh_installdocs
+   dh_installdocs debian/README.Debian
dh_installchangelogs
dh_install --sourcedir=debian/tmp
dh_link
diff -u xserver-xorg-video-savage-2.0.2.3/debian/control 
xserver-xorg-video-savage-2.0.2.3/debian/control
--- xserver-xorg-video-savage-2.0.2.3/debian/control
+++ xserver-xorg-video-savage-2.0.2.3/debian/control
@@ -11,6 +11,7 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}, xserver-xorg-core (= 1:0.99.0-1)
 Provides: xserver-xorg-video
 Replaces: xserver-xorg ( 6.8.2-35)
+Suggests: libgl1-mesa-dri
 Description: X.Org X server -- Savage display driver
  This package provides the driver for the S3/VIA Savage/ProSavage/Twister 
family
  of chipsets.
@@ -20,4 +21,6 @@
  URL:http://lists.freedesktop.org/mailman/listinfo/xorg
  .
+ You also need to install libgl1-mesa-dri for 3D acceleration of Savage cards
+ .
  This module can be found as the module 'driver/xf86-video-savage' at
  :pserver:[EMAIL PROTECTED]:/cvs/xorg
only in patch2:
unchanged:
--- xserver-xorg-video-savage-2.0.2.3.orig/debian/README.Debian
+++ xserver-xorg-video-savage-2.0.2.3/debian/README.Debian
@@ -0,0 +1,52 @@
+3D acceleration using Savage drivers
+
+
+If 3D acceleration is working, glxinfo (in package mesa-utils) will report:
+  
+  direct rendering: Yes
+
+Also, in your X server log (/var/log/Xorg.0.log)  you will find:
+
+  (**) SAVAGE(0): DRI is enabled
+
+
+Troubleshooting 3D acceleration with Savage drivers
+---
+
+If can not find this in your X server log:
+
+   (**) SAVAGE(0): DRI is enabled
+
+You should check that your X server really is using the Savage driver, and that
+X acceleration is not disabled. You should find a device section like this in
+/etc/X11/xorg.conf:
+
+Section Device
+Identifier  S3
+Driver  savage
+EndSection
+
+If the X server log shows that DRI is disabled, but glxinfo reports that direct
+rendering is not working, you should check that libgl1-mesa-dri is installed.
+This package contains the savage_dri.so DRI module which is needed for direct
+rendering.  If this is installed, look at the output of glxinfo with debug
+information enabled. On a working system you should see something like this:
+
+$ LIBGL_DEBUG=verbose glxinfo
+
+name of display: :0.0
+libGL: XF86DRIGetClientDriverName: 2.0.2 savage (screen 0)
+libGL: OpenDriver: trying /usr/lib/dri/savage_dri.so
+drmOpenByBusid: Searching for BusID pci::01:00.0
+drmOpenDevice: node name is /dev/dri/card0
+drmOpenDevice: open result is 4, (OK)
+drmOpenByBusid: drmOpenMinor returns 4
+drmOpenByBusid: drmGetBusid reports pci::01:00.0
+libGL error:
+Can't open configuration file /etc/drirc: No such file or directory.
+libGL error:
+Can't open configuration file /home/chris/.drirc: No such file or directory.
+display: :0  screen: 0
+direct

Bug#336433: Package diff support

2006-06-07 Thread Chris Halls
On Wednesday 07 June 2006 18:33, Otavio Salvador wrote:
 Translation- will be in together with DDTP. BTW, check:
 ddtp.debian.net

Thanks Otavio

Can you give me an example filename of a file as it would be found in a 
repository? I guess these files will be updated in place, like Packages, 
Sources, Contents etc.?

Chris


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



Bug#336433: Package diff support

2006-06-07 Thread Chris Halls
On Wednesday 07 June 2006 18:50, Otavio Salvador wrote:
 Yes, they will be updated.

 http://ddtp.debian.net/debian/dists/sid/main/i18n/

Thanks Otavio, that's the information I needed
Chris


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



Bug#336433: Package diff support

2006-06-07 Thread Chris Halls
Hi Florian

On Sunday 30 October 2005 10:07, Florian Weimer wrote:
 The patch below is required for package diff support (available with
 apt from experimental).
[...]
 +FileType(re.compile(r/(Packages|Release(\.gpg)?|Sources|Index
 +r|(?:Contents|Translation)-.*)(\.(gz|bz2))?$),
   text/plain, 1),

Thanks a lot for the patch you made to apt-proxy. I have adjusted it a little 
(the mutable parameter should be 1 for *.diff/Index and 0 for the *.gz 
files), and I've also added some unit tests. I can't find any Translation- 
files on ftp.debian.org though - could you point me to an archive that 
contains these files?

Thanks
Chris



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



Bug#353174: openoffice.org-help: Non-free file in source

2006-02-16 Thread Chris Halls
Package: openoffice.org-help
Severity: serious
Justification: Policy 2.2.2

$ tar -ztvf openoffice.org-help_2.0.1.orig.tar.gz \*parser.jar
-rw-r--r-- rene/rene136133 2000-10-10 13:28:16 
openoffice.org-help-2.0.1/external/common/parser.jar

This file does not come with source and violates the DFSG

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)


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



Bug#350895: python2.3-twisted-runner: Conflict with python2.3-twisted-bin

2006-02-01 Thread Chris Halls
Package: python2.3-twisted-runner
Version: 0.1.0-1
Severity: serious
Justification: Policy 7.5.1

Unpacking python2.3-twisted-runner (from 
.../python2.3-twisted-runner_0.1.0-1_i386.deb) ...
dpkg: error processing 
/var/cache/apt/archives/python2.3-twisted-runner_0.1.0-1_i386.deb (--unpack):
 trying to overwrite 
`/usr/lib/python2.3/site-packages/twisted/runner/portmap.so', which is also in 
package python2.3-twisted-bin

$ dpkg -l python2.3-twisted-bin
||/ NameVersion Description
+++-===-===-==
ii  python2.3-twisted-bin   2.0.1-5 Event-based 
framework for internet applications


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)


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



Bug#349858: python-twisted-web: File conflict when upgrading from twisted 2,0

2006-01-25 Thread Chris Halls
Package: python-twisted-web
Version: 0.5.0-1
Severity: serious

Unpacking python-twisted-web (from .../python-twisted-web_0.5.0-1_all.deb) ...
dpkg: error processing 
/var/cache/apt/archives/python-twisted-web_0.5.0-1_all.deb (--unpack):
 trying to overwrite `/usr/bin/websetroot', which is also in package 
python-twisted

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)


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



Bug#343922: apt-cache: manual cleanup of cache

2006-01-11 Thread Chris Halls
On Wednesday 11 Jan 2006 08:47, Andreas Krüger wrote:
 However, I do not know whether this has now utterly confused my apt-cache
 setup. Will it just work, or will my bold solution earn me apt-proxy
 problems?

It will be fine - apt-proxy notices if files disappear from the cache, and 
removes them from its databases.

Thanks for confirming this problem

Chris



Bug#343922: apt-proxy: cleanup_freq and max_age configuration options not honored by restart.

2005-12-19 Thread Chris Halls
tag 343922 + confirmed
thanks

Hi

On Sunday 18 Dec 2005 19:28, Andreas Krüger wrote:
 With df and du | sort -n, I quickly found out that
 /var/cache/apt-proxy is much larger than I would like
 it to be.

 A solution for bug #198859 would help...

Yes, that bug is a very good idea, it's just not a high priority while there 
are bugs in the existing code.

 As a workaround, I set, in /etc/apt/apt-proxy-v2.conf:

 cleanup_freq = 1d
 max_age = 40d

 Both numbers had been considerably higher previously.

 I issued /etc/init.d/apt-proxy stop and
 /etc/init.d/apt-proxy start, to make the two changes
 valid immediately.

 I don't think I had a cache cleanup yesterday.

Ouch. Thanks a lot for pointing this out. I have checked the code and you are 
right - the first cleanup cycle occurs at $cleanup_freq after apt-proxy is 
started. So in your case, you should work around the bug by setting 
cleanup_freq to less than the time you leave the machine powered on.

Chris



Bug#343395: apt-proxy: doesn't stop downloading when APT is quit

2005-12-14 Thread Chris Halls
On Wednesday 14 Dec 2005 22:00, Andreas Pakulat wrote:
 finally I'm bothered enough to write a bug report about this. 

Thanks for the report - I wasn't aware of this. apt-proxy is undergoing some 
major internal changes at the moment, but I'll make sure I check this has 
been fixed once the dust settles.

Chris


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



Bug#343212: apt-proxy: heavy resource usage when database debugging is on

2005-12-13 Thread Chris Halls
Package: apt-proxy
Version: 1.9.32
Severity: minor

Hi

On Monday 12 Dec 2005 12:56, Micha wrote:
 I wonder if the db debug level triggers a whole db lookup which somehow's
 using up rather much resources (both hd and cpu) ?

I think your analysis is exactly right. running the database at full debug 
does generate a *lot* of log output, including complete dumps of the 
databases. Normally it is not necessary to enable debug so I have not looked 
at optimising this.

 This is ap 19.x, debian testing/unstable, kernel 2.6.13 with a
 low-latency-desktop kernel (*)

Maybe this makes the usage worse. I am opening a bug to make sure this is not 
forgotten. Thanks for the report

Chris

--
Full message:

Hi,

just made the regular daily update (well, this time after it was suspendet 
for some edays) and noticed ap's running very slow, with pauses between 
every download (which run at normal speed themwselves) and sometimes 
even within a single download. 
Parallel streaming is _not_ enabled in the config.

After 60 packages or so i interrupted the update.
Debug level was all:9 so i got some logging (last lines):


(...)
2005/12/12 13:14 CET [FetcherHttp,client] [db] openssh-server: 
2005/12/12 13:14 CET [FetcherHttp,client] 
[db]  /debian/pool/main/o/openssh/openssh-server_4.2p1-5_i386.deb
2005/12/12 13:14 CET [FetcherHttp,client] [db] gstreamer0.8-ffmpeg: 
2005/12/12 13:14 CET [FetcherHttp,client] 
[db]  /debian/pool/main/g/gst-ffmpeg/gstreamer0.8-ffmpeg_0.8.5-2_i386.deb
2005/12/12 13:14 CET [FetcherHttp,client] 
[db]  /debian/pool/main/g/gst-ffmpeg/gstreamer0.8-ffmpeg_0.8.7-4_i386.deb
2005/12/12 13:14 CET [FetcherHttp,client] [db] binutils: 
2005/12/12 13:14 CET [FetcherHttp,client] 
[db]  /debian/pool/main/b/binutils/binutils_2.15-6_i386.deb
2005/12/12 13:14 CET [FetcherHttp,client] 
[db]  /debian/pool/main/b/binutils/binutils_2.16.1-2_i386.deb
2005/12/12 13:14 CET [FetcherHttp,client] 
[db]  /debian/pool/main/b/binutils/binutils_2.16.1cvs20051117-1_i386.deb

2005/12/12 13:14 CET [FetcherHttp,client] [Fetcher] Last request removed

2005/12/12 13:14 CET [FetcherHttp,client] [http-client] XXX 
clientConnectionLost
2005/12/12 13:14 CET [FetcherHttp,client] Stopping factory 
apt_proxy.apt_proxy.ClientFactory instance at 0xb6a5d88c
2005/12/12 13:14 CET [Channel,73,127.0.0.1] [debug] Client connection closed
2005/12/12 13:14 CET [Channel,73,127.0.0.1] Top 10:
2005/12/12 13:14 CET [Channel,73,127.0.0.1]        282 WeakKeyDictionary
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         94 Exception
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         32 DBError
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         31 SelectReactor
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         28 
ProtocolToConsumerAdapter
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         28 DBError
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         26 Protocol
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         24 StandardError
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         17 Warning
2005/12/12 13:14 CET [Channel,73,127.0.0.1]         17 ValueError



Apparently, ap2 was busy with recreating (? or whatever) the database 
in the background. This is only an AMD K6 (500mhz) with 512MB, but 
anything is fully optimized and it's rarely grunting under load.  But i 
suspect 
a bottleneck somewhere. I set debug = all:9 db:0, restarted ap, and bingo it 
worked fast as usual again. After some 20 packages i interrupted the update 
agian, and here are the last logline:



(...)
2005/12/12 13:28 CET [Channel,28,127.0.0.1] [Fetcher.activate] (debian) 
servers:1/debian/pool/main/d/dbus/python2.3-dbus_0.23.4-8_i386.deb
2005/12/12 13:28 CET [Channel,28,127.0.0.1] Starting factory 
apt_proxy.apt_proxy.ClientFactory instance at 0xb6adc1cc
2005/12/12 13:28 CET [Uninitialized] [http_client] 
GET:/debian/pool/main/d/dbus/python2.3-dbus_0.23.4-8_i386.deb
2005/12/12 13:28 CET [Uninitialized] [http_client] host:ftp2.de.debian.org
2005/12/12 13:28 CET [FetcherHttp,client] [http_client] handleStatus 200 - OK
2005/12/12 13:28 CET [FetcherHttp,client] [debug] Received: Date Mon, 12 Dec 
2005 12:28:56 GMT
2005/12/12 13:28 CET [FetcherHttp,client] [debug] Received: Server 
Apache/2.0.54 (Debian GNU/Linux)
2005/12/12 13:28 CET [FetcherHttp,client] [debug] Received: Last-Modified Mon, 
28 Nov 2005 22:02:07 GMT
2005/12/12 13:28 CET [FetcherHttp,client] [debug] Received: ETag 
165c084-23470-410515c0
2005/12/12 13:28 CET [FetcherHttp,client] [debug] Received: Accept-Ranges 
bytes
2005/12/12 13:28 CET [FetcherHttp,client] [debug] Received: Content-Length 
144496
2005/12/12 13:28 CET [FetcherHttp,client] [debug] Received: Connection close
2005/12/12 13:28 CET [FetcherHttp,client] [debug] Received: Content-Type 
application/x-debian-package
2005/12/12 13:28 CET [Channel,28,127.0.0.1] [Fetcher] Last request removed
2005/12/12 13:28 CET [Channel,28,127.0.0.1] [debug] Client connection closed
2005/12/12 13:28 CET [Channel,28,127.0.0.1] Top 10:
2005/12/12 13:28 CET 

Bug#265220: ITA: ayttm -- Universal Instant Messaging Client

2005-12-07 Thread Chris Halls
Hi

On Wednesday 07 Dec 2005 11:28, Kartik Mistry wrote:
 I am very much interested for mentaining this package. I just talked
 to one of the developer of ayttm. Well, this is just starting as i am
 about to start NMP soon as I got my key signed by jaldhar (who is DD)
 at foss.in/2005

I had a message last week from 'Ziv Younger', who is also interested in 
helping, but he has not responded to my email.

If you'd like to maintain this package, just go ahead. It sounds like you'll 
need someone to upload packages; I can sponsor them for you while you go 
through NM.

Thanks
Chris


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



Bug#337877: exceptions.AttributeError: DbfilenameShelf instance has no attribute 'dict'

2005-11-07 Thread Chris Halls
reassign 337877 python-twisted
thanks

Hi Brian

On Mon, Nov 07, 2005 at 11:07:33AM +1100, Brian May wrote:
 Package: apt-proxy
 Version: 1.9.29
 Severity: important
 
 Hello,
 
 Based on the bug reports, I get the impression this software is no
 longer maintained - is this the case?

No, apt-proxy is just in the middle of a large rework, which will fix a
large number of the harder bugs when complete. Work is continuing on a
seperate svn branch until it is actually useable.

Otavio has been taking care of the minor bug reports and translations
but has been busy lately too.

 Anyway, I am now repeatedly getting this exception, which makes apt-proxy
 unusable:
 
 2005/11/07 10:55 EST [-] Traceback (most recent call last):
   File /usr/lib/python2.3/site-packages/twisted/internet/base.py, 
 line 423, in runUntilCurrent
 call.func(*call.args, **call.kw)
   File 
 /usr/lib/python2.3/site-packages/twisted/internet/process.py, line 54, in 
 reapAllProcesses
 process.reapProcess()
   File 
 /usr/lib/python2.3/site-packages/twisted/internet/process.py, line 504, in 
 reapProcess
 self.processEnded(status)
   File 
 /usr/lib/python2.3/site-packages/twisted/internet/process.py, line 561, in 
 processEnded
 self.maybeCallProcessEnded()
 --- exception caught here ---
   File 
 /usr/lib/python2.3/site-packages/twisted/internet/process.py, line 601, in 
 maybeCallProcessEnded
 self.proto.processEnded(failure.Failure(e))
   File /usr/lib/python2.3/site-packages/apt_proxy/apt_proxy.py, 
 line 190, in processEnded
 self.deferred.callback(None)
   File /usr/lib/python2.3/site-packages/twisted/internet/defer.py, 
 line 252, in callback
 self._startRunCallbacks(result)
   File /usr/lib/python2.3/site-packages/twisted/internet/defer.py, 
 line 313, in _startRunCallbacks
 self._runCallbacks()
   File /usr/lib/python2.3/site-packages/twisted/internet/defer.py, 
 line 354, in _runCallbacks
 self.result.cleanFailure()
   File /usr/lib/python2.3/site-packages/twisted/python/failure.py, 
 line 290, in cleanFailure
 self.__dict__ = self.__getstate__()
   File /usr/lib/python2.3/site-packages/twisted/python/failure.py, 
 line 262, in __getstate__
 c['frames'] = [
   File /usr/lib/python2.3/UserDict.py, line 156, in __repr__
 return repr(dict(self.iteritems()))
   File /usr/lib/python2.3/UserDict.py, line 98, in iteritems
 for k in self:
   File /usr/lib/python2.3/UserDict.py, line 85, in __iter__
 for k in self.keys():
   File /usr/lib/python2.3/shelve.py, line 98, in keys
 return self.dict.keys()
 exceptions.AttributeError: DbfilenameShelf instance has no attribute 
 'dict'

This seems to be a failure in twisted itself. apt-proxy has no direct control
over the dict that is causing the failure, so twisted itself needs to
handle the exception properly.

So I'll reassign to the python-twisted package.

Thanks
Chris
 
 -- System Information:
 Debian Release: 3.1
 Architecture: i386 (i686)
 Kernel: Linux 2.6.8-2-k7
 Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
 
 Versions of packages apt-proxy depends on:
 ii  bzip2  1.0.2-7   high-quality block-sorting file 
 co
 ii  debconf1.4.30.13 Debian configuration management 
 sy
 ii  logrotate  3.7-5 Log rotation utility
 ii  python 2.3.5-2   An interactive high-level 
 object-o
 ii  python-apt 0.5.10Python interface to libapt-pkg
 ii  python-bsddb3  3.3.0-6   Python interface to libdb3
 ii  python-twisted 1.3.0-8   Event-based framework for 
 internet
 ii  python2.3  2.3.5-3sarge1 An interactive high-level 
 object-o
 
 -- debconf information excluded


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



Bug#336779: apt-proxy: storage of data not documented

2005-11-01 Thread Chris Halls
Hi

On Tuesday 01 Nov 2005 13:35, Geert Stappers wrote:
  cache_dir = /srv/aptproxy

Does this directory exist, and does the user aptproxy have permission to write 
files here?

 but there are no files ( no .debs, no packages ) in it.
 Neither in the default /var/cache/apt-proxy.

Very strange. What do you see in /var/log/apt-proxy.log?

 dpk -L apt-proxy reveals /var/lib/apt-proxy,
 but that location is also empty.

 Where are the files stored?

/var/cache/apt-proxy, unless you set cache_dir (and create a directory that 
the aptproxy user owns).

Please let me know if you find the problem.

Chris


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



Bug#336784: apt-proxy: refuses connection on the telnet debug port

2005-11-01 Thread Chris Halls
On Tuesday 01 Nov 2005 13:42, Geert Stappers wrote:
 | telnet_port = 9998
 | telnet_user = aptproxy
 | telnet_password = geheim

 but when I try to connect it, I get

 | telnet: Unable to connect to remote host: Connection refused

 even from telnet to localhost, port 9998

 What is needed to get the debug port working?

The configuration looks fine. Did you restart apt-proxy after changing the 
configuration? Are there any error messages in the logfile?

Chris


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



Bug#336784: apt-proxy: refuses connection on the telnet debug port

2005-11-01 Thread Chris Halls
On Tuesday 01 Nov 2005 17:09, Geert Stappers wrote:
 Attached is the log file.

Thanks. I forgot to ask you to turn debug on first. Could you set
  debug = all:9 db:7
then restart apt-proxy, and then send a new log. That should also dump the 
configuration that apt-proxy picked up to the logfile.

The shutdown messages are annoying, but that part of the code has already been 
rewritten so I won't chase it at the moment.

Chris


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



Bug#270874: still a problem?

2005-06-30 Thread Chris Halls
On Tuesday 28 Jun 2005 12:44, Michael Vogt wrote:
 I would like to know if this memory leak is still there with the
 latest version of apt-proxy (currently 1.9.31).

It seemed to have gone away but came back every now and again for me.  I have 
found one way to reproduce it, and I think that it is not a leak as such, but 
a problem where apt_pkg grabs large amounts of memory (about 12Mb per 
instance) if sources.list is empty or there are no valid Packages files 
available.  I've extracted this into a separate script (attached) that 
demonstrates the problem.

Since it does not make sense to load the packages database if there are no 
packages files I have also added a test to my development apt-proxy that 
skips loading the cache if there are no packages files available.  This 
should fix the problem in apt-proxy itself.

Chris


test_memleak.py
Description: application/python


Bug#314442: hplip: Black text rendering problem with djgenericvip driver

2005-06-16 Thread Chris Halls
Package: hplip
Version: 0.9.3-1
Severity: normal
Tags: patch

When upgrading my woody server to sarge I encountered this problem.
Black text is not rendered properly on certain documents on my dj 5652,
which uses the djgenericvip driver.  The documents that don't render
properly seem to be those that have colour sections on the same level as
the text.  A bit of searching found I'm not the only one to have these
problems:

http://sourceforge.net/forum/forum.php?thread_id=1284445forum_id=53438

The workaround suggested does indeed work for me.  I have created a
dpatch for the package which is attached.  Please can you add it to the
package until this is resolved properly upstream?

Thanks
Chris

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-686
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages hplip depends on:
ii  hplip-base0.9.3-1HP Linux Printing and Imaging Syst
ii  python2.3.5-2An interactive high-level object-o
ii  python-qt33.13-4 Qt3 bindings for Python (default v

-- no debconf information


14_djgenericvip-nokpath.dpatch
Description: application/shellscript


Bug#312318: About korganizer

2005-06-16 Thread Chris Halls
On Monday 13 Jun 2005 17:20, Jorge Eduardo Birck wrote:
 Hi! I see your e-mail in debian-qt list about korganizer: relocation
 error: /usr/lib/libkorganizer_calendar.so.1: undefined symbol:
 _ZN4KCal8Calendar6eventsEv.

 Did you find a solution for this??

Sorry, I didn't make it clear in the bug report.  Update libkcal2a to the 
version in experimental (4:3.4.1-1)

Chris


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



Bug#314236: apt-proxy: breaks with twisted v2

2005-06-16 Thread Chris Halls
On Wednesday 15 Jun 2005 11:25, Mark De Souza wrote:
 Current version does not enforce python2.3-twisted  v2 yet when
 python2.3-twisted = v2 is installed apt-proxy breaks

In what way?

 /etc/init.d/apt-proxy start breaks silently

Is there any output in the logfile?

 running /usr/sbin/apt-proxy identifies the problem correctly (ie the
 program states it will not run on versions  2)

It says it has not been tested, but for me it works ok.  I uploaded 1.9.31 
that adds 2.0.1 to the list of known working versions.

Chris


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



Bug#312310: libkdepim1: ABI change breaks older kmail

2005-06-07 Thread Chris Halls
Package: libkdepim1
Version: 4:3.4.1-1
Severity: important
Tags: experimental

$ kmail
kmail: relocation error: /usr/lib/libkmailprivate.so.0: undefined
symbol: _ZN4KPIM19KListViewSearchLine15createPopupMenuEv

$ c++filt _ZN4KPIM19KListViewSearchLine15createPopupMenuEv
KPIM::KListViewSearchLine::createPopupMenu()

That function is in libkdepim.  It seems the ABI was changed without
changing the SONAME, so any package compiled against the older libkdepim
is in danger of breaking.

I still had the older kmail package installed:
ii  kmail 3.3.2-3   KDE Email client

So you need 
  libkdepim1 Conflicts: kmail ( 4:3.4) or similar
(or to change the library SONAME, which breaks upstream compatibility,
or to change the libkdepim1 package name and Conflict with libkdepim1)

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-686
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libkdepim1 depends on:
ii  kdelibs44:3.4.1-1core libraries for all KDE applica
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-13   GCC support library
ii  libkcal2a   4:3.4.1-1KDE calendaring library
ii  libqt3c102-mt   3:3.3.4-3Qt GUI Library (Threaded runtime v
ii  libstdc++5  1:3.3.5-13   The GNU Standard C++ Library v3

-- no debconf information


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



Bug#312315: kmail: kdepim-kio-plugins version should be sepecified in Recommends

2005-06-07 Thread Chris Halls
Package: kmail
Version: 4:3.4.1-1
Severity: normal
Tags: experimental

After upgrading from 3.3.2 to the experimental 3.4.1 packages, kmail
could not access my imap accounts:

$ kmail: ERROR: : couldn't create slave : Unable to
create io-slave:
klauncher said: Unknown protocol 'imaps'.
kmail:
kmail: ERROR: : couldn't create slave : Unable to create io-slave:
klauncher said: Unknown protocol 'imap'.

My kdepim-kio-plugins fulfils the Recommends in the Package, yet does
not provide imap support.

Upgrading kdepim-kio-plugins to 4:3.4.1-1 fixes the problem, so the
Recommends: should be versioned.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-686
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages kmail depends on:
ii  kdebase-kio-plugins  4:3.4.1-1   core I/O slaves for KDE
ii  kdelibs4 4:3.4.1-1   core libraries for all KDE applica
ii  kdepim-kio-plugins   4:3.3.2-3   KDE pim I/O Slaves
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libaudio21.7-2   The Network Audio System (NAS). (s
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libfontconfig1   2.3.1-2 generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-13  GCC support library
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libidn11 0.5.13-1.0  GNU libidn library, implementation
ii  libkcal2a4:3.4.1-1   KDE calendaring library
ii  libkdepim1   4:3.4.1-1   KDE PIM library
ii  libkleopatra0a   4:3.4.1-1   KDE GnuPG interface libraries
ii  libkpimidentities1   4:3.4.1-1   KDE PIM user identity information 
ii  libksieve0   4:3.4.1-1   KDE mail/news message filtering li
ii  libmimelib1a 4:3.4.1-1   KDE mime library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libstdc++5   1:3.3.5-13  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxrandr2   4.3.0.dfsg.1-14 X Window System Resize, Rotate and
ii  libxrender1  0.8.3-7 X Rendering Extension client libra
ii  libxt6   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  perl 5.8.4-8 Larry Wall's Practical Extraction 
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#312318: libkcal2a: ABI change breaks korganiser

2005-06-07 Thread Chris Halls
Package: libkcal2a
Version: 4:3.4.1-1
Severity: important
Tags: experimental

$ dpkg -l korganizer libkcal2a
[...]
ii  korganizer   3.3.2-3  KDE personal 
organizer
ii  libkcal2a3.4.1-1  KDE calendaring 
library

$ korganizer
korganizer: relocation error: /usr/lib/libkorganizer_calendar.so.1:
undefined symbol: _ZN4KCal8Calendar6eventsEv

$ c++filt _ZN4KCal8Calendar6eventsEv
KCal::Calendar::events()

$ dlocate /usr/lib/libkorganizer_calendar.so.1
korganizer: /usr/lib/libkorganizer_calendar.so.1.0.0
korganizer: /usr/lib/libkorganizer_calendar.so.1

$ objdump -C -T /usr/lib/libkcal.so.2.0.0 | grep
KCal::Calendar::events
00064220 gDF .text  0059  Base KCal::Calendar::events(QDateTime const)
00064280 gDF .text  0068  Base KCal::Calendar::events(QDate const, 
QDate const, bool)
000642f0 gDF .text  0060  Base 
KCal::Calendar::events(KCal::EventSortField, KCal::SortDirection)
000641b0 gDF .text  0061  Base KCal::Calendar::events(QDate const, 
bool)

So libkcal changed its ABI again, by removing KCal::Calendar::events().

I see this already happened before:

kdepim (4:3.3.2-0pre1) experimental; urgency=low

  * New upstream release.
  * They did it again... rename libkcal2 to libkcal2a because of removed
symbols SloxAccounts::self(), SloxAccounts::setServer(QString const),
SloxAccounts::SloxAccounts() in libkslox.so.
  * Bump shlibs version on libkdepim1.

Perhaps this needs to be done again?

Thanks
Chris

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-686
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libkcal2a depends on:
ii  kdelibs4 4:3.4.1-1   core libraries for all KDE applica
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libaudio21.7-2   The Network Audio System (NAS). (s
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libfontconfig1   2.3.1-2 generic font configuration library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-13  GCC support library
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libidn11 0.5.13-1.0  GNU libidn library, implementation
ii  libkdepim1   4:3.4.1-1   KDE PIM library
ii  libktnef14:3.4.1-1   Library for handling KTNEF email a
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libstdc++5   1:3.3.5-13  The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxrandr2   4.3.0.dfsg.1-14 X Window System Resize, Rotate and
ii  libxrender1  0.8.3-7 X Rendering Extension client libra
ii  libxt6   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#312315: kmail: kdepim-kio-plugins version should be sepecified in Recommends

2005-06-07 Thread Chris Halls
On Tuesday 07 Jun 2005 13:14, Adeodato Sim wrote:
   Note that this will only be informational, since recent testing by
   Christopher Martin showed up that nor apt-get nor aptitutde would
   upgrade kdepim-kio-plugins even if the recommends were versioned.

Pity, although at least the relationship would then show up in aptitude as not 
being fulfiled.

   A possibility would be a -versioned conflicts, but that seems a bit
   excessive.

Hmm, difficult.  Well, anyone who has a partial 3.3/3.4 system is asking for 
trouble and probably only has it because they missed some packages that 
needed upgrading.  So I would say the conflict would be useful for a larger 
group of people (those who forgot to upgrade some packages vs. those who 
really want a hybrid 3.3/3.4).

That's just my opinion, I'll leave it up to you to make the call

Thanks
Chris



Bug#296335: Openoffice.org die silently

2005-06-07 Thread Chris Halls
On Tuesday 07 Jun 2005 15:16, Riccardo Magliocchetti wrote:
 Package: openoffice.org
 version: 1.1.3-9

Please can you also include the information that reportbug gives?  In other 
words, run 'reportbug openoffice.org' and paste the data into a new mail to 
[EMAIL PROTECTED]

Thanks
Chris


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



Bug#311517: cdbs: upstream filename 'changelog' not recognised

2005-06-01 Thread Chris Halls
Package: cdbs
Version: 0.4.28-1
Severity: normal

I found this when wondering why meld's packaging does not include an
upstream changelog.  It turns out the changelog is called 'changelog'
yet the list in debhelper.mk does not include this variant:

DEB_INSTALL_CHANGELOGS_ALL = [...]
 for f in ChangeLog Changelog Changes CHANGES;

Please can this be added to the list?

Thanks
Chris

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-686
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

-- no debconf information


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



Bug#309872: apt-proxy: timeout with firewall

2005-05-20 Thread Chris Halls
Package: apt-proxy
Version: 1.9.28
Tags: patch

Thanks Olivier for your message and patch.  Filing a bug report to make sure 
this doesn't get forgotten, thanks

Chris

--  Forwarded Message  --

Subject: [Apt-proxy-users] Problem with apt-proxy, http backend and a new 
firewall
Date: Tuesday 19 Apr 2005 17:05
From: Olivier Bornet [EMAIL PROTECTED]
To: [EMAIL PROTECTED]

Hello all,

since Monday, we have a new firewall at work. And since Monday, we have
problems with apt-proxy. And it seems the problem is related to this new
firewall.

We have apt-proxy version 1.9.28 from debian testing distribution. All
http backend has stopped working, and apt-get update stops with a
timeout.

To isolate the problem, I have try to do (aptproxy is our apt-proxy):

wget http://aptproxy:/debian/dists/testing/Release

and it results of a timeout after about 1 minute:
HTTP request sent, awaiting response... 504 Gateway Time-out
17:56:08 ERROR 504: Gateway Time-out.

Here is the trace from the apt-proxy log file:

==
2005/04/19 17:43 CEST [Channel,3,192.33.221.75] [debug] Headers: User-Agent:
 Wget/1.9.1, Host: aptproxy:, Accept: */*, Connection: Keep-Alive
 2005/04/19 17:43 CEST [Channel,3,192.33.221.75] [debug] Request: GET
 /debian/dists/testing/Release 2005/04/19 17:43 CEST
 [Channel,3,192.33.221.75] [Fetcher.activate] (debian)
 servers:1/debian/dists/testing/Release 2005/04/19 17:43 CEST
 [Channel,3,192.33.221.75] [file_ok] check_cached:
 /var/cache/apt-proxy/debian/dists/testing/Release 2005/04/19 17:43 CEST
 [Channel,3,192.33.221.75] [fetch_real] Consulting server about
 /var/cache/apt-proxy/debian/dists/testing/Release 2005/04/19 17:43 CEST
 [Channel,3,192.33.221.75] [Fetcher.activate] (debian)
 servers:1/debian/dists/testing/Release 2005/04/19 17:43 CEST
 [Channel,3,192.33.221.75] Starting factory
 apt_proxy.apt_proxy.ClientFactory instance at 0x40a1722c 2005/04/19 17:43
 CEST [Uninitialized] [http_client]
 GET:/ftp/mirror/debian/dists/testing/Release 2005/04/19 17:43 CEST
 [Uninitialized] [http_client] host:mirror.switch.ch 2005/04/19 17:44 CEST
 [FetcherHttp,client] [http_client] handleStatus 504 - Gateway Timeout
 2005/04/19 17:44 CEST [FetcherHttp,client] [Fetcher] Response code: 504 -
 None 2005/04/19 17:44 CEST [FetcherHttp,client] [debug] Received:
 Content-Type text/html 2005/04/19 17:44 CEST [FetcherHttp,client] [debug]
 Received: Content-Length 342 2005/04/19 17:44 CEST [FetcherHttp,client]
 [debug] Received: Cache-Control no-cache 2005/04/19 17:44 CEST
 [FetcherHttp,client] [debug] Received: Pragma no-cache 2005/04/19 17:44 CEST
 [FetcherHttp,client] [Fetcher] Finished receiving data, status:504
 saveData:1 2005/04/19 17:44 CEST [FetcherHttp,client] [Fetcher] Last request
 removed 2005/04/19 17:44 CEST [FetcherHttp,client] [Fetcher] telling the
 transport to loseConnection 2005/04/19 17:44 CEST [FetcherHttp,client]
 [http-client] XXX clientConnectionLost 2005/04/19 17:44 CEST
 [FetcherHttp,client] Stopping factory apt_proxy.apt_proxy.ClientFactory
 instance at 0x40a1722c 2005/04/19 17:44 CEST [Channel,3,192.33.221.75]
 [debug] Client connection closed 2005/04/19 17:44 CEST
 [Channel,3,192.33.221.75] Top 10:
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 84 Exception
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 32 DBError
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 28 DBError
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 24 StandardError
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 23 ClientFactory
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 22 FetcherHttp
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 22 Protocol
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 20 SelectReactor
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 17 Warning
2005/04/19 17:44 CEST [Channel,3,192.33.221.75] 17 ValueError
==

Using netstat on aptproxy, I can see the connection to the real debian server
is established, so all seems to be OK.

The firewall is configured to accept everything from the inside network
to the outside.

The backend is:

==
[debian]
;; The main Debian archive
backends =
http://mirror.switch.ch/ftp/mirror/debian
==

What is strange, is that we can do a wget on the real file from
aptproxy computer!!! This mean:
wget http://mirror.switch.ch/ftp/mirror/debian/dists/testing/Release
is working as expected...

The ftp backends are working OK. We have just problems with the http
backends.

We also have try to use a tunnel over ssh to bypass the firewall, and in
this condition, apt-proxy is working OK.

What can I test/do to find the problem ?

Thanks in advance for your help.

--  Forwarded Message  --

Subject: Re: [Apt-proxy-users] Problem with 

Bug#273900: gnucash: abort on scheduled transaction occurs here too

2005-05-18 Thread Chris Halls
Package: gnucash
Version: 1.8.10-12
Followup-For: Bug #273900

I've started getting the same assertion here too.  I created a scheduled
transaction last time I had the accounts open, and now I can't open them
any more because the assertion is triggered and gnucash aborts.

Console output:

$ gnucash Accounts
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...
Error: create_each_transaction_he...(): Common-commodity difference: old=EUR, 
new=GBP

Error: create_each_transaction_he...(): Some error in new transaction 
creation...

** ERROR **: file dialog-sxsincelast.c: line 1614 (sxsincelast_init): assertion 
failed: (nextPage)
aborting...
Aborted
$

I created a scheduled transaction to occur once a month from last September,
which would probably account for the number of error messages.

I suggest a raise in severity because this bug now prevents me from
accessing the accounts file at all.

Thanks
Chris

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-686
Locale: LANG=en_GB, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages gnucash depends on:
ii  bonobo   1.0.22-2.2  The GNOME Bonobo System.
ii  gdk-imlib1   1.9.14-16.2 imaging library for use with gtk (
ii  gnucash-common   1.8.10-12   A personal finance tracking progra
ii  guile-1.6-libs   1.6.7-1 Main Guile libraries
ii  guile-1.6-slib   1.6.7-1 Guile SLIB support
ii  libart2  1.4.2-19The GNOME canvas widget - runtime 
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libbonobo2   1.0.22-2.2  The GNOME Bonobo library.
ii  libc62.3.2.ds1-21GNU C Library: Shared libraries an
ii  libdate-manip-perl   5.42a-3 a perl library for manipulating da
ii  libdb3   3.2.9-22Berkeley v3 Database Libraries [ru
ii  libesd0  0.2.35-2Enlightened Sound Daemon - Shared 
ii  libfinance-quote-per 1.08-1  Perl module for retrieving stock q
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libgal23 0.24-1.4G App Libs (run time library)
ii  libgconf11   1.0.9-7 GNOME configuration database syste
ii  libgdk-pixbuf-gnome2 0.22.0-8The GNOME1 Canvas pixbuf library
ii  libgdk-pixbuf2   0.22.0-8The GdkPixBuf image library, gtk+ 
ii  libghttp11.0.9-15original GNOME HTTP client library
ii  libglade-gnome0  1:0.17-3Library to load .glade files at ru
ii  libglade01:0.17-3Library to load .glade files 

Bug#303289: apt-proxy: Ubuntu repository as default

2005-04-06 Thread Chris Halls
On Tuesday 05 Apr 2005 21:07, Marco Túlio Gontijo e Silva wrote:
 The ubuntu repository is on the default list and it's not commented.

Is there a problem with that?  If no clients use ubuntu it does not make any 
difference.

Chris



Bug#302503: apt-proxy: occassioanally dies, but less often than version from a few months ago

2005-04-06 Thread Chris Halls
On Friday 01 Apr 2005 06:18, Miernik wrote:
 There is not much diagnosis in log when it dies, log ends like this:

 [apt_pkg] Loading Packages database for
 /var/cache/apt-proxy/.apt-proxy/backends/kadu

Could it be that you have an out of memory situation?

Memory usage for the packages databases is huge at the moment.  It seems to be 
something to do with the way it uses python-apt.  I do want to fix it but I 
don't know if I can get it done for the sarge release.

As a work around, can you reduce the number of backends you use for now?  
Alternatively, increase the amount of swap space available on the apt-proxy 
machine.

Chris


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



Bug#303357: apt-proxy times out with bz2 packages files and slower systems

2005-04-06 Thread Chris Halls
Hi Craig

Thank you very much for the detailed report and analysis.  I think you are 
probably right about the problem.  I had already noticed the bz2 file 
verification is too slow (you notice delays even on a fairly fast machine) 
and in the medium term I would like to do this verification step after 
download instead of before sending to clients.  But I don't think this will 
be fixed before sarge releases.

Looking at the code, the timeout is set here (in apt_proxy.py):

self.laterID = reactor.callLater(self.factory.timeout, self.timedout)

self.fatcory.timeout corresponds to the timeout setting in apt-proxy.conf.  I 
hadn't realised this since this value is supposed to be the network timeout
for backends.  So you could increase the timeout but I wonder if it might be 
better just to disable the checking completely:

--- apt_proxy.py2005-03-25 09:04:53.0 +
+++ apt_proxy.py.noverify   2005-04-06 12:42:34.310102336 +0100
@@ -129,9 +129,6 @@
 elif re.search(r\.gz$, self.path):
 exe = '/bin/gunzip'
 args = (exe, '-t', '-v', self.path)
-elif re.search(r\.bz2$, self.path):
-exe = '/usr/bin/bunzip2'
-args = (exe, '--test', self.path)
 else:
 # Unknown file, just check it is not 0 size
 try:

That will disable the use of bunzip2 and apt-proxy will only check that the 
file is not zero size.  Since these files are updated once a day anyway (and 
would be replaced if broken) it might be best to do this.

Does that patch work for you?

Chris


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



Bug#303289: apt-proxy: Ubuntu repository as default

2005-04-06 Thread Chris Halls
On Wednesday 06 Apr 2005 16:25, Otavio Salvador wrote:
 Oh, I forgot about the dynamic backends be enabled by default. That's
 true.

 I think we have two options here:

  - Disable the dynamic backends by default (this isn't a choice IMHO)
  - Leave this as is

 What all think about it?

Hmm.  After sucessfully arguing that the backend should stay, I wonder about 
#302503:  apt-proxy is using lots of memory for each enabled backend.  Maybe 
we should disable the backend at least until we have fixed the memory 
problem.


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



Bug#272206: apt-proxy - supports keep-alive on http 1.0 requests

2005-04-05 Thread Chris Halls
severity 272206 normal
retitle 272206 apt-proxy - keep-alive behaviour broken if pipeling is enabled
tags 272206 + confirmed
thanks

[I sent this message on 7 March but there was a problem with the mail itself, 
resending.]

On Saturday 18 Sep 2004 11:27, Bastian Blank wrote:
 Package: apt-proxy
 Version: 1.9.18
 Severity: important

 apt-proxy uses keep-alive on http 1.0 requests if it get the not
 specified Connection: Keep-Alive header but responds in a way which is
 not understood by the broken clients which sends this header.

pipelining is disabled by default as of 1.9.19, and with 1.9.27 I can only 
reproduce this when I have pipelining enabled.  So I am downgrading the 
report since I think we no longer need to regard it as release critical.

Steps to reproduce:

1. add or uncomment in apt-proxy.conf:

disable_pipelining=0

2. run:

 wget -S http://localhost:/debian/dists/sid/Release \ 
 http://localhost:/debian/dists/testing/Release

3. Examine Keep-Alive headers and wget behaviour 

Thanks a lot for your report
Chris


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



Bug#272206: apt-proxy - supports keep-alive on http 1.0 requests

2005-03-07 Thread Chris Halls
severity 272206 normal
retitle 272206 apt-proxy - keep-alive behaviour broken if pipeling is enabled
tags 272206 + confirmed
thanks

On Saturday 18 Sep 2004 11:27, Bastian Blank wrote:
 Package: apt-proxy
 Version: 1.9.18
 Severity: important

 apt-proxy uses keep-alive on http 1.0 requests if it get the not
 specified Connection: Keep-Alive header but responds in a way which is
 not understood by the broken clients which sends this header.

pipelining is disabled by default as of 1.9.19, and with 1.9.27 I can only 
reproduce this when I have pipelining enabled.  So I am downgrading the 
report since I think we no longer need to regard it as release critical.

Steps to reproduce:

1. add or uncomment in apt-proxy.conf:

disable_pipelining=0

2. run:

 wget -S http://localhost:/debian/dists/sid/Release \ 
 http://localhost:/debian/dists/testing/Release

3. Examine Keep-Alive headers and wget behaviour 

Thanks a lot for your report
Chris


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



Bug#267880: Shouldn't be included on sarge

2005-03-07 Thread Chris Halls
On Tuesday 24 Aug 2004 22:01, Otavio Salvador wrote:
 Package: apt-proxy
 Version: 1.9.17
 Severity: serious

 This package is really usable for most users but have a lot of already
 know and serious bugs so I think is better leave it out of sarge.

Well, I think we are ready to remove this now.  If version 1.3 had been 
allowed into sarge I would not be saying this, but I think apt-proxy v2 is 
now stable enough to include in sarge now without being regarded as 
completely broken.

I am still aware of some fairly serious problems, which are top priority for 
the bugfixing effort now:

1. huge virtual memory usage.  Maybe in the Packages databases, since this 
only happens after a while.

  PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND
 5775 aptproxy  16   0  151m 130m 4356 S  0.0 13.4   0:30.56 twistd

2. apt-proxy-import seems to be broken.

What do you think Otavio?

Chris


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



Bug#261802: apt-proxy: default thread pool size is too large, cannot be configured easily

2005-03-03 Thread Chris Halls
severity 261802 normal
retitle 261802 apt-proxy: [pipelining] default thread pool size is too large
thanks

Hi

Thanks for your report.  http pipelining is now disabled by default so I am
downgrading the severity of this bug.

Chris


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



Bug#294344: Sometimes apt-proxy returns partial files to the HTTP client (APT)

2005-03-03 Thread Chris Halls
tags 294344 + woody
thanks

Hi

On Wednesday 09 Feb 2005 10:17, Radu Cristescu wrote:
 Package: apt-proxy
 Version: 1.3.0
 Severity: important

 Sometimes, apt-get receives incomplete Packages.gz files which makes
 gzip to fail uncompressing that file.

This bug should have been fixed in later versions of the 1.3 branch.  You can 
get 1.3.7 here:

http://apt-proxy.sourceforge.net/apt-proxy/stable/apt-proxy_1.3.7_all.deb

Sorry for wasting your time on a bug that has already been fixed.  Also, 
version 1 is no longer in development as it has been rewritten in python, so 
I'm afraid I can't use any of your changes for the new version either.

If you do find changes that need making in the new version (1.9.x), I'd be 
glad to consider adding them.

Thanks
Chris


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



Bug#297743: openoffice.org: oowriter crashes short after startup

2005-03-02 Thread Chris Halls
On Wednesday 02 Mar 2005 19:41, Andreas Pakulat wrote:
 On 02.Mär 2005 - 19:40:29, Rene Engelhard wrote:
  Andreas Pakulat wrote:
   Xlib: unexpected async reply (sequence 0x7ada)!
 
  Since when does that happen? Did you change something except OOo? If
  yes, what? May it be a xlib bug?

 Since this weekend I think. I wrote a document last week and it did
 not happen. This week oowriter crashes when I only start it and then
 look at my mails or something. nearly-daily updates of sid and yes
 there where other things changed. Luckily I collect the changelogs ;-)

 So here's the list:

 openoffice.org 1.1.3-5 on 19.Feb
 xfree86 4.3.0.dfsg.1-12 on 20.Feb
 openoffice.org 1.1.3-6 on 21.Feb
 openoffice.ogr 1.1.3-7 on 26.Feb
 xfree86 4.3.0.dfsg.1-12.0.1 on 26.Feb

Hmm, this thread started today on the upstream users list and talks about the 
same problem, but with 1.9:

http://www.openoffice.org/servlets/ReadMsg?listName=usersmsgNo=86626

 Date: Wed, 02 Mar 2005 16:20:20 +0200
 From: Rich
 Content-Type: text/plain; charset=ISO-8859-13; format=flowed
 Subject: [users] Xlib: unexpected async reply
 
 
 unfortunately i haven't found a reliable way to reproduce this problem. 
 usually it happens when i'm using generic widgets and several times 
 switch between oo.org windows - although that's not a requirement, last 
 time it hang when i had a single drawing open. i'll try do some more 
 testing, so far i've seen it approx 5 times. hopefully ;) it'll surface 
 again.
 
 Philipp Lohmann - Sun Germany wrote:
  This would be a severe problem within OOo. Can you describe a method to 
  reproduce this problem ? If so, please file an issue.
  
  Kind regards, pl
  
  Rich wrote:
  
  lately 1.9 beta candidate hangs now and then with an error message (i 
  run it from console) :
  Xlib: unexpected async reply
 
  could this be a problem in oo.org (i found a message in a debian list 
  that mentioned similar problem with staroffice, but it was pretty old 
  - so 5.2) ?
 



Bug#295329: Occasionally fails to update Packages list

2005-02-25 Thread Chris Halls
On Tuesday 15 Feb 2005 05:03, Matthew Hawkins wrote:
 For a long time apt-proxy appears to have been getting quite confused
 over what constitutes an up-to-date Packages file.  For example, right
 now for me the local apt-proxy cache shows this (for sid/main):

 -rw---  1 aptproxy nogroup 3401444 Feb 14 07:06 Packages.gz

 The upstream mirror its connected to shows this:

 -rw-r--r--   1 mirror   mirror  3401217 Feb 14 20:10 Packages.gz

 and by HTTP instead of FTP:
 Packages.gz 15-Feb-2005 06:10   3.2M  GZIP compressed file

 (the time difference between FTP  HTTP being the GMT offset of my TZ)

Hmm, I don't remember seeing any difference in the time handling for http and 
ftp, so you could well be right.  And, both the original author and myself 
life in Europe so the timezone difference is not that big and if there was a 
problem we probably wouldn't have noticed it.

 What else can I do to help diagnose this problem?

Could you try turning debug on and having a closer look at the logfiles 
generated? [1]  You'll see information about the times of the files and the 
decisions ap makes there.

There are several places I can think of where something might be going wrong:

1. the interpretation of the if-modified-since: header sent by your client
2. comparing the if-modified-since time with the time of the file in the cache
3. sending an if-modified-since header to the backend http server.

It would be a big help if you could narrow it down, thanks
Chris

[1] add to apt-proxy.conf:
debug = all:9 db:7


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



Bug#296875: apt-proxy: init script cosmetics and speedup

2005-02-25 Thread Chris Halls
On Friday 25 Feb 2005 11:21, Herbert Thielen wrote:
 Currently, the /etc/init.d/apt-proxy stop may do some output without
 closing bracket:
  root:/etc/init.d# ./apt-proxy restart
  Stopping apt-proxy [wait 2.
  Starting apt-proxy.

Erm, yes I saw that too :)

Thanks a lot for your fixes, I'll put them in the next release.

Chris


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



Bug#296941: apt-proxy (1.3.x) doesn't support udeb's

2005-02-25 Thread Chris Halls
tags 296941 + woody
retitle 296941 apt-proxy (woody) doesn't support udeb's
thanks

On Friday 25 Feb 2005 21:19, Andre Kostur wrote:
 Package: apt-proxy
 Version: 1.3.0
 Severity: wishlist


 apt-proxy won't serve .udeb's to clients since it's not recognized as a
 managable file extension.  If apt-proxy v2 isn't going to be in sarge,
 it may be worthwhile to extend 1.3 to support udebs so one could use
 apt-proxy during the installation of a new machine.

apt-proxy (1.3.4) unstable; urgency=low
[...]
  * Apply patch from Roger Burton West (thanks!) to handle unknown filetypes
for Jigdo support (closes: #156676, #156009)
[...]
 -- Chris Halls [EMAIL PROTECTED]  Fri, 20 Sep 2002 10:59:04 +0200

That should also be sufficient for basic udeb support.

Version 1.3.7 is available in sarge-proposed-updates.  You can get the .deb 
here:

http://ftp.debian.org/debian/pool/main/a/apt-proxy/apt-proxy_1.3.7_all.deb

Does that work for you?

Thanks
Chris


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



Bug#284579: openoffice.org: THis bug seems to be fixed upstream

2005-02-15 Thread Chris Halls
On Tuesday 15 Feb 2005 13:29, Norbert Preining wrote:
 This bug is present in other builds, too, and seems to be fixed
 upstream. In RedHat there is the fix in version 1.1.3-5.5.0.fc3.
 An discussion of the problem can be found in
 http://www.oooforum.org/forum/viewtopic.phtml?t=16502
 and
 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=146328

 Hope the next build fixes this problem. Thanks a lot and all the best!

Thanks a lot for the Red Hat bugzilla reference.  If the problem described is 
your problem too, you should find the next package version fixes this.

Chris


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



Bug#294885: openoffice.org-debian-files: man page for regcomp.1

2005-02-12 Thread Chris Halls
On Saturday 12 Feb 2005 02:46, Nathanael Nerode wrote:
 Here is a proposed manpage by someone who didn't entirely understand the
 program.  :-/  In any case, it's executable and in /usr/bin, so it needs a
 man page.

Thanks Nathanel!

Would you mind doing another one too?  The ooconfigimport tool has some 
documentation here:

http://www.openoffice.org/servlets/ReadMsg?list=allfeaturesmsgId=445866

Thank you,
Chris


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



Bug#294329: apt-proxy: log files not readable by adm group

2005-02-09 Thread Chris Halls
On Wednesday 09 Feb 2005 08:43, Vineet Kumar wrote:
 apt-proxy.log is owned by aptproxy:nogroup.  I generally add users to
 the adm group to be able to read logs in /var/log, but this doesn't get
 them access to the apt-proxy log, which is inconvenient.

Did you try modifying /etc/logrotate/apt-proxy?

Thanks
Chris


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



Bug#293176: Setting system wide defaults.

2005-02-08 Thread Chris Halls
On Monday 07 Feb 2005 22:22, John McMonagle wrote:
 How about be real convoluted and link the cache into  var :)

Linking things around is not wonderful because it a) is really difficult to 
manage from a packaging point of view and b) confuses people who are used to 
the current layout and annoys upstream when it breaks other stuff (see for 
example the problems with the font installer).

Would you mind taking this upstream to see if you can get any sort of 
consensus about how they would like this solved?  It would make life a lot 
easier for everyone if there was an agreed way to do this.

Thanks
Chris


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



Bug#284487: Mention dialog option in /usr/share/doc/openoffice.org-gtk-gnome/README.Debian

2005-01-28 Thread Chris Halls
On Thursday 27 Jan 2005 15:26, Michael R Head wrote:
 Also, how is it possible for an administrator to configure this setting
 system-wide for all users? Perhaps that can be mentioned in the README,
 too.

Thanks for your suggestions.  Rene  I have too many requests for changes than 
we can keep up with quickly.  If you'd like to write a suitable README file 
I'd be glad to include it.

Thanks
Chris


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



Bug#284487: Mention dialog option in /usr/share/doc/openoffice.org-gtk-gnome/README.Debian

2005-01-28 Thread Chris Halls
On Thursday 27 Jan 2005 19:30, Rene Engelhard wrote:
 Hmm. But yeah, maybe there should be a README.Debian there too. We would
 do a symlink to the openoffice.org one since -gtk-gnome depends on
 openoffice.org depends on openoffice.org-debian-files so there should be
 no problem. I'll think about it.

It probably makes more sense to have a seperate file.  README.Debian is big 
enough as it is.

Chris


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



Bug#292525: openoffice.org: Signal 11 on startup searching fonts

2005-01-28 Thread Chris Halls
On Thursday 27 Jan 2005 16:58, Russel Winder wrote:
 OO.o works fine with this.  If I remove the comment from the final
 directory so that it is included then I get the following output.  I
 have no idea what is causing the problem.  I guess it could be a
 faulty Type 1 font file or it could be something in OO.o.  I have
 tried using Nautilus and gfontview so I believe all the fonts fiels
 are sensible.

 /usr/lib/openoffice/program/libpsp645li.so(_ZN3psp16PrintFontManager9PrintF
ont14readAfmMetricsERKN3rtl7OStringEPN3utl17MultiAtomProviderEb+0x1ed1)[0x41
45f1f3]

It's crashing while reading a Type 1 file.  Use 'strace' to find out which 
font it opened just before it crashed.

Please send me the file if you'd like me to try and fix the crash itself.

Thanks
Chris


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



Bug#284487: Mention dialog option in /usr/share/doc/openoffice.org-gtk-gnome/README.Debian

2005-01-28 Thread Chris Halls
On Friday 28 Jan 2005 19:34, Michael R Head wrote:
 Actually, I was happy with Rene's idea of simply linking to the
 openoffice readme.

Oh, OK.  I assumed you'd already found that README.

 I'd also be happy to write up a section in the README about how to
 enable the native fileselector globally, for all users, but I just don't
 know how to set those sort of options in /etc/openoffice.

You can't do it in /etc/openoffice, I'm afraid.  You have to modify the global 
configuration XML, which is a little tricky.  It's a case of finding the XML 
that needs changing by fiddling with your own user settings and comparing the 
changes, and then using ooconfigimport to merge that into the system 
XML.  /usr/bin/openoffice does this already for the user interface language, 
if you'd like to look at an example.

Alternatively, you may be able to do it by starting OOo as root and then 
changing the settings using the GUI.  I know that works for oopadmin but I 
don't know if it works for the user settings

Chris


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



  1   2   >