Bug#365137: snooper: line editing enhancement: DEL

2010-02-16 Thread Stefan Bauer

Gabor,

unfortunately your supplied patch can not be integrated in the 
current version of snooper. A bunch of other patches get applied 
against the upstream version to fix numerous bugs. Unfortunately, 
they also got rid of the procedure your patch is applying against.


I will keep that bugreport open but it's a matter of time when i 
will find a solution to easily integrate it.


I'm not sure whether this is a direct problem in snooper ore a 
terminal emulation issue.


Stefan
--
Stefan Bauer -
PGP: E80A 50D5 2D46 341C A887 F05D 5C81 5858 DCEF 8C34
 plzk.de - Linux - because it works --



--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b7a51d6.1020...@cubewerk.de



Bug#232029: snooper: segfault when resizing the terminal window

2010-02-16 Thread Stefan Bauer

Christian,

this report is more than 6 years old but could you please try if the 
problem still persists with the latest snooper package from 
unstable? There have been many changes in the past.


I was trying to reproduce your problem but it works in my office.

Stefan
--
Stefan Bauer -
PGP: E80A 50D5 2D46 341C A887 F05D 5C81 5858 DCEF 8C34
 plzk.de - Linux - because it works --



--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b7a52ff.3020...@cubewerk.de



Bug#232029: snooper: segfault when resizing the terminal window

2010-02-16 Thread Cristian Ionescu-Idbohrn
On Tue, 16 Feb 2010, Stefan Bauer wrote:

 Christian,

 this report is more than 6 years old but could you please try if the problem
 still persists with the latest snooper package from unstable? There have been
 many changes in the past.

 I was trying to reproduce your problem but it works in my office.

Just go ahead and close this bug.
If it works for you, I'm happy.  I've not used snooper for quite a while.


Cheers,

-- 
Cristian



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1002161146400.6...@somehost



Processed: Re: Bug#520975: exactimage: edisplay program is missing?

2010-02-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 520975 with 536376
Bug #520975 [exactimage] exactimage: edisplay program is missing?
Was not blocked by any bugs.
Added blocking bug(s) of 520975: 536376
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12663194948786.transcr...@bugs.debian.org



Bug#520975: exactimage: edisplay program is missing?

2010-02-16 Thread Jakub Wilk

block 520975 with 536376
thanks

* Miles Bader mi...@gnu.org, 2009-03-24, 11:24:
The debian package description, TODO, website, etc., of exactimage 
suggest that it includes a display program called edisplay -- however 
there is no such program installed by the debian exactimage package, 
nor any obvious extra package containing it...


Unfortunately, I cannot fix this bug in unstable because of bug #536376. 
However, I plan to upload exactimage with edisplay enabled to 
experimental.


--
Jakub Wilk


signature.asc
Description: Digital signature


Re: Bug#56256: Ada95 bindings for ncurses (fwd)

2010-02-16 Thread Nicolas Boulenguez
On Sun, Feb 14, 2010 at 11:17:02AM -0500, Thomas Dickey wrote:
 On Sun, 14 Feb 2010, Nicolas Boulenguez wrote:
 I would like to make a separate package from the Ada binding. This
 seems the only solution since the GNAT compiler will not be available
 on all debian architectures before long, and this would make it quite
 difficult to build it from the same tarball than the C API.
 
 It should not be difficult to convince the upstream to make its source
 a separate tarball, since nothing has been modified in it for many
 years.
 
 actually, it seems that every time gnat is updated, there are more
 stylistic changes needed (aside from that, it's pretty stable).

Would you please release a separate tarball containing only the Ada95/
subdirectory and the related documentation ? I cannot estimate the
work needed if you still want generated Makefiles, but the following
Makefile and GNAT project file make the job for me and may be a
starting point.

-- Content of file: Makefile
#!/usr/bin/make -f

# These main variables may be inherited from a distribution script.
LIB_NAME ?= ncursesada
DESTDIR ?=
SONAME ?= lib$(LIB_NAME).so.1
# These main variables only depend on these sources.
ADA_DIR := $(realpath .)/Ada95
BUILD_DIR := $(realpath .)/build
GNAT_PROJECT := build.gpr

# gnatmake can do parallel builds; we don't want make to interfere.
.NOTPARALLEL:
CPUS := $(shell getconf _NPROCESSORS_ONLN)

## build directory

$(BUILD_DIR) $(BUILD_DIR)/src $(BUILD_DIR)/m4:
mkdir -p $@

## C program exporting representations

$(BUILD_DIR)/gen: $(ADA_DIR)/gen/gen.c \
  | $(BUILD_DIR)
gcc $ -o $@ -lncurses

## files containing the m4 macros

define generate_macro
$(BUILD_DIR)/m4/$(1): $(BUILD_DIR)/gen \
  | $(BUILD_DIR)/m4
$$  $(2)  $$@
GENERATED_MACROS += $(BUILD_DIR)/m4/$(1)
endef
$(eval $(call generate_macro,Character_Attribute_Set_Rep,B A))
$(eval $(call generate_macro,Base_Defs,B B))
$(eval $(call generate_macro,Color_Defs,B C))
$(eval $(call generate_macro,Window_Offsets,B D))
$(eval $(call generate_macro,Key_Definitions,B K))
$(eval $(call generate_macro,Linker_Options,B L))
$(eval $(call generate_macro,ACS_Map,B M))
$(eval $(call generate_macro,Old_Keys,B O))
$(eval $(call generate_macro,Public_Variables,B P))
$(eval $(call generate_macro,AC_Rep,B R))
$(eval $(call generate_macro,Version_Info,B V))
$(eval $(call generate_macro,Trace_Defs,B T))
$(eval $(call generate_macro,Menu_Opt_Rep,M R))
$(eval $(call generate_macro,Menu_Base_Defs,M B))
$(eval $(call generate_macro,Menu_Linker_Options,M L))
$(eval $(call generate_macro,Item_Rep,M I))
$(eval $(call generate_macro,Form_Opt_Rep,F R))
$(eval $(call generate_macro,Form_Base_Defs,F B))
$(eval $(call generate_macro,Form_Linker_Options,F L))
$(eval $(call generate_macro,Field_Rep,F I))
$(eval $(call generate_macro,Mouse_Base_Defs,P B))
$(eval $(call generate_macro,Mouse_Event_Rep,P M))
$(eval $(call generate_macro,Mouse_Events,B E))
$(eval $(call generate_macro,Panel_Linker_Options,P L))
$(eval $(call generate_macro,Chtype_Def,E C))
$(eval $(call generate_macro,Eti_Defs,E E))

## m4 generated Ada sources
define generate_m4_source
$(BUILD_DIR)/src/$(1): $(ADA_DIR)/gen/$(1).m4 \
   $(ADA_DIR)/gen/normal.m4 \
   $(GENERATED_MACROS) \
   | $(BUILD_DIR)/src
(cd $(BUILD_DIR)/m4  m4 -DNCURSES_EXT_FUNCS=TODO \
 -DM4MACRO=$(ADA_DIR)/gen/normal.m4) \
 $$ \
| sed -e '/^\-\-\ \ \-\*\-\ ada\ \-\*\-.*/d' \
 $$@
GENERATED_SOURCES += $(BUILD_DIR)/src/$(1)
endef
$(foreach template, \
  $(patsubst $(ADA_DIR)/gen/%.m4,%, \
$(wildcard $(ADA_DIR)/gen/terminal_interface-curses*.m4)), \
  $(eval $(call generate_m4_source,$(template

## gnatprep generated Ada sources
# pragma Unreferenced has entered standard Ada now.
# Choose whether we add trace() function to all models of ncurses

$(BUILD_DIR)/src/terminal_interface-curses-trace.adb: 
$(ADA_DIR)/src/terminal_interface-curses-trace.adb_p \
  | $(BUILD_DIR)/src
gnatprep $ $@ -DADA_TRACE=False -DPRAGMA_UNREF=True
GENERATED_SOURCES += $(BUILD_DIR)/src/terminal_interface-curses-trace.adb

# build/install/clean Ada sources

.PHONY: build
build: export BUILD_DIR := $(BUILD_DIR)
build: export ADA_DIR := $(ADA_DIR)
build: export LIB_NAME := $(LIB_NAME)
build: export SONAME := $(SONAME)
build: $(GENERATED_SOURCES)
gnatmake -j$(CPUS) -p -P$(GNAT_PROJECT) -XLIB_KIND=dynamic
gnatmake -j$(CPUS) -p -P$(GNAT_PROJECT) -XLIB_KIND=static

.PHONY: install
install:
install --directory $(DESTDIR)/usr/share/ada/adainclude/$(LIB_NAME)
install --mode=644 \
  $(ADA_DIR)/src/*.ad[sb] \
  $(GENERATED_SOURCES) \
  $(DESTDIR)/usr/share/ada/adainclude/$(LIB_NAME)
 

Re: Bug#569227: ncurses-base: break handling of ctrl-c in xterm and rxvt using bash

2010-02-16 Thread Thomas Dickey

On Tue, 16 Feb 2010, Helmut Grohne wrote:


Hi Joachim,

On Wed, Feb 10, 2010 at 11:26:07PM +0100, Sven Joachim wrote:

Ever thought of upgrading this two years old, totally unsupported kernel?


I followed your advise and upgraded my kernel to vanilla 2.6.32.8. The
problem persists in all detail (only that I lost all my old xterms).
On the other hand the kernel upgrade only worsened the situation in many
other aspects (#545163, #569314, ...).

Do you have any other ideas on how to debug this problem?


Your shell is not likely using the parts of ncurses which would change
the terminal modes.  For instance, bash uses only the termcap interface.
I'd look at the shell.

--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net


--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100216064118.q56...@mail101.his.com



Re: Bug#56256: Ada95 bindings for ncurses (fwd)

2010-02-16 Thread Thomas Dickey

On Tue, 16 Feb 2010, Nicolas Boulenguez wrote:


On Sun, Feb 14, 2010 at 11:17:02AM -0500, Thomas Dickey wrote:

On Sun, 14 Feb 2010, Nicolas Boulenguez wrote:

I would like to make a separate package from the Ada binding. This
seems the only solution since the GNAT compiler will not be available
on all debian architectures before long, and this would make it quite
difficult to build it from the same tarball than the C API.

It should not be difficult to convince the upstream to make its source
a separate tarball, since nothing has been modified in it for many
years.


actually, it seems that every time gnat is updated, there are more
stylistic changes needed (aside from that, it's pretty stable).


Would you please release a separate tarball containing only the Ada95/
subdirectory and the related documentation?? I cannot estimate the
work needed if you still want generated Makefiles, but the following
Makefile and GNAT project file make the job for me and may be a
starting point.


thanks - I'll see what I can do with this.  (I may make an Ada95/configure
to fill in the details).



-- Content of file: Makefile
#!/usr/bin/make -f

# These main variables may be inherited from a distribution script.
LIB_NAME ?= ncursesada
DESTDIR ?=
SONAME ?= lib$(LIB_NAME).so.1
# These main variables only depend on these sources.
ADA_DIR := $(realpath .)/Ada95
BUILD_DIR := $(realpath .)/build
GNAT_PROJECT := build.gpr

# gnatmake can do parallel builds; we don't want make to interfere.
.NOTPARALLEL:
CPUS := $(shell getconf _NPROCESSORS_ONLN)

## build directory

$(BUILD_DIR) $(BUILD_DIR)/src $(BUILD_DIR)/m4:
mkdir -p $@

## C program exporting representations

$(BUILD_DIR)/gen: $(ADA_DIR)/gen/gen.c \
 | $(BUILD_DIR)
gcc $ -o $@ -lncurses

## files containing the m4 macros

define generate_macro
$(BUILD_DIR)/m4/$(1): $(BUILD_DIR)/gen \
 | $(BUILD_DIR)/m4
$$  $(2)  $$@
GENERATED_MACROS += $(BUILD_DIR)/m4/$(1)
endef
$(eval $(call generate_macro,Character_Attribute_Set_Rep,B A))
$(eval $(call generate_macro,Base_Defs,B B))
$(eval $(call generate_macro,Color_Defs,B C))
$(eval $(call generate_macro,Window_Offsets,B D))
$(eval $(call generate_macro,Key_Definitions,B K))
$(eval $(call generate_macro,Linker_Options,B L))
$(eval $(call generate_macro,ACS_Map,B M))
$(eval $(call generate_macro,Old_Keys,B O))
$(eval $(call generate_macro,Public_Variables,B P))
$(eval $(call generate_macro,AC_Rep,B R))
$(eval $(call generate_macro,Version_Info,B V))
$(eval $(call generate_macro,Trace_Defs,B T))
$(eval $(call generate_macro,Menu_Opt_Rep,M R))
$(eval $(call generate_macro,Menu_Base_Defs,M B))
$(eval $(call generate_macro,Menu_Linker_Options,M L))
$(eval $(call generate_macro,Item_Rep,M I))
$(eval $(call generate_macro,Form_Opt_Rep,F R))
$(eval $(call generate_macro,Form_Base_Defs,F B))
$(eval $(call generate_macro,Form_Linker_Options,F L))
$(eval $(call generate_macro,Field_Rep,F I))
$(eval $(call generate_macro,Mouse_Base_Defs,P B))
$(eval $(call generate_macro,Mouse_Event_Rep,P M))
$(eval $(call generate_macro,Mouse_Events,B E))
$(eval $(call generate_macro,Panel_Linker_Options,P L))
$(eval $(call generate_macro,Chtype_Def,E C))
$(eval $(call generate_macro,Eti_Defs,E E))

## m4 generated Ada sources
define generate_m4_source
$(BUILD_DIR)/src/$(1): $(ADA_DIR)/gen/$(1).m4 \
  $(ADA_DIR)/gen/normal.m4 \
  $(GENERATED_MACROS) \
  | $(BUILD_DIR)/src
(cd $(BUILD_DIR)/m4  m4 -DNCURSES_EXT_FUNCS=TODO \
-DM4MACRO=$(ADA_DIR)/gen/normal.m4) \
$$ \
   | sed -e '/^\-\-\ \ \-\*\-\ ada\ \-\*\-.*/d' \
$$@
GENERATED_SOURCES += $(BUILD_DIR)/src/$(1)
endef
$(foreach template, \
 $(patsubst $(ADA_DIR)/gen/%.m4,%, \
   $(wildcard $(ADA_DIR)/gen/terminal_interface-curses*.m4)), \
 $(eval $(call generate_m4_source,$(template

## gnatprep generated Ada sources
# pragma Unreferenced has entered standard Ada now.
# Choose whether we add trace() function to all models of ncurses

$(BUILD_DIR)/src/terminal_interface-curses-trace.adb: 
$(ADA_DIR)/src/terminal_interface-curses-trace.adb_p \
 | $(BUILD_DIR)/src
gnatprep $ $@ -DADA_TRACE=False -DPRAGMA_UNREF=True
GENERATED_SOURCES += $(BUILD_DIR)/src/terminal_interface-curses-trace.adb

# build/install/clean Ada sources

.PHONY: build
build: export BUILD_DIR := $(BUILD_DIR)
build: export ADA_DIR := $(ADA_DIR)
build: export LIB_NAME := $(LIB_NAME)
build: export SONAME := $(SONAME)
build: $(GENERATED_SOURCES)
gnatmake -j$(CPUS) -p -P$(GNAT_PROJECT) -XLIB_KIND=dynamic
gnatmake -j$(CPUS) -p -P$(GNAT_PROJECT) -XLIB_KIND=static

.PHONY: install
install:
install --directory $(DESTDIR)/usr/share/ada/adainclude/$(LIB_NAME)
install --mode=644 

Bug#570089: exactimage: embedded copy of AGG

2010-02-16 Thread Jakub Wilk

Source: exactimage
Version: 0.7.4-3
Severity: important

extactimage embeds (and uses) a private copy of the AGG library. 
It should use the system-wide library instead.


--
Jakub Wilk


signature.asc
Description: Digital signature


Processed: Re: Bug#377270: agg doesn't provide a shared library

2010-02-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 570089 with 377270
Bug #570089 [src:exactimage] exactimage: embedded copy of AGG
Was not blocked by any bugs.
Added blocking bug(s) of 570089: 377270
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.126632385215225.transcr...@bugs.debian.org



Bug#232029: marked as done ((no subject))

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 14:09:02 +0100
with message-id 4b7a98ee.8030...@cubewerk.de
and subject line Re: snooper: segfault when resizing the terminal window
has caused the Debian Bug report #232029,
regarding (no subject)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
232029: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=232029
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Subject: snooper: segfault when resizing the terminal window
Package: snooper
Version: 19991202-3
Severity: normal

Rebuilt the package with debug enabled, and this is what gdb shows:

,
| r...@box:/tmp/snooper-19991202# build/snooper /dev/ttyS0 /dev/ttyS1
| LE DTR RTS ST SR CTS CD RI DSR  9600bps  /dev/ttyS0  0 chars
| LE DTR RTS ST SR CTS CD RI DSR  9600bps  /dev/ttyS1  0 chars
| --
| Segmentation fault (core dumped)
|
| r...@box:/tmp/snooper-19991202# gdb build/snooper core
| GNU gdb 5.3-debian
| Copyright 2002 Free Software Foundation, Inc.
| GDB is free software, covered by the GNU General Public License, and you are
| welcome to change it and/or distribute copies of it under certain conditions.
| Type show copying to see the conditions.
| There is absolutely no warranty for GDB.  Type show warranty for details.
| This GDB was configured as i386-linux...
| Core was generated by `build/snooper /dev/ttyS0 /dev/ttyS1'.
| Program terminated with signal 11, Segmentation fault.
| Reading symbols from /lib/libncurses.so.5...done.
| Loaded symbols for /lib/libncurses.so.5
| Reading symbols from /usr/lib/liblockdev.so.1...done.
| Loaded symbols for /usr/lib/liblockdev.so.1
| Reading symbols from /lib/libc.so.6...done.
| Loaded symbols for /lib/libc.so.6
| Reading symbols from /lib/ld-linux.so.2...done.
| Loaded symbols for /lib/ld-linux.so.2
| #0  0x08049c0e in echoback (line=0,
| buf=0xb840 \214\216\...@\020x\001@\200l\...@\a, len=-1)
| at ../src/main.c:316
| 316 if (buf[i] == ' ') {
| (gdb) bt
| #0  0x08049c0e in echoback (line=0,
| buf=0xb840 \214\216\...@\020x\001@\200l\...@\a, len=-1)
| at ../src/main.c:316
| #1  0x0804aa32 in mainloop () at ../src/main.c:671
| #2  0x0804b0f4 in main (argc=2, argv=0xbd48) at ../src/main.c:817
| (gdb) q
|
| r...@box:/tmp/snooper-19991202#
`


Cheers,
Cristian

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux box 2.4.22-xfs #1 SMP Fr Okt 3 20:36:25 CEST 2003 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages snooper depends on:
ii  libc6 2.3.2.ds1-10   GNU C Library: Shared libraries an
ii  liblockdev1   1.0.1-6Run-time shared library for lockin
ii  libncurses5   5.3.20030719-5 Shared libraries for terminal hand

-- no debconf information

---End Message---
---BeginMessage---
Closed as it is not reproducable in newer versions and the reporter 
confirmed that he is not using snooper anymore.


thanks

stefan

--
Stefan Bauer -
PGP: E80A 50D5 2D46 341C A887 F05D 5C81 5858 DCEF 8C34
 plzk.de - Linux - because it works --

---End Message---


Bug#570089: Processed: Re: Bug#377270: agg doesn't provide a shared library

2010-02-16 Thread Rene Engelhard
Hi,

On Tue, Feb 16, 2010 at 12:39:08PM +, Debian Bug Tracking System wrote:
 Processing commands for cont...@bugs.debian.org:
 
  block 570089 with 377270
 Bug #570089 [src:exactimage] exactimage: embedded copy of AGG
 Was not blocked by any bugs.
 Added blocking bug(s) of 570089: 377270
  thanks
 Stopping processing here.

I don't see why it's blocked here. You can also use libagg-dev
and not use the embedded code copy without agg having a shared library.

agg hot having a shared library results back from the time I maintained
it - and it#s because of the fact that AFAIR agg didn't change SONAME
even when the ABI changed - boom :-)

The PIC argument isn't one either, that#s exactly why libagg_pic is there:

$ dpkg -L libagg-dev | grep a$
/usr/lib/libaggplatformX11.a
/usr/lib/libagg.a
/usr/lib/libagg_pic.a
^

(same for the rest)

Grüße/Regards,

René
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70



--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100216135207.ge14...@rene-engelhard.de



Bug#570089: Processed: Re: Bug#377270: agg doesn't provide a shared library

2010-02-16 Thread Jakub Wilk

unblock 570089 with 377270
thanks

* Rene Engelhard r...@debian.org, 2010-02-16, 14:52:

I don't see why it's blocked here. You can also use libagg-dev
and not use the embedded code copy without agg having a shared library.

agg hot having a shared library results back from the time I maintained
it - and it#s because of the fact that AFAIR agg didn't change SONAME
even when the ABI changed - boom :-)

The PIC argument isn't one either, that#s exactly why libagg_pic is there:

$ dpkg -L libagg-dev | grep a$
/usr/lib/libaggplatformX11.a
/usr/lib/libagg.a
/usr/lib/libagg_pic.a
^


Oh, right, somehow I missed that. Thanks for pointing that out!

--
Jakub Wilk


signature.asc
Description: Digital signature


Processed: limit source to exactimage, tagging 570089

2010-02-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #exactimage (0.7.5-1) UNRELEASED; urgency=low
 #
 #  * Various improvement in package building:
 #+ Link with system copy of AGG (closes: #570089):
 #  - Update debian/rules.
 #  - Add missing includes. [agg-missing-includes.diff]
 #  - Use PIC version of static AGG library. [agg-pic.diff]
 #
 limit source exactimage
Limiting to bugs with field 'source' containing at least one of 'exactimage'
Limit currently set to 'source':'exactimage'

 tags 570089 + pending
Bug #570089 [src:exactimage] exactimage: embedded copy of AGG
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.126633190416121.transcr...@bugs.debian.org



aub 2.2.2 MIGRATED to testing

2010-02-16 Thread Debian testing watch
FYI: The status of the aub source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  2.2.2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhqso-0005m2...@ries.debian.org



d4x 2.5.7.1-7 MIGRATED to testing

2010-02-16 Thread Debian testing watch
FYI: The status of the d4x source package
in Debian's testing distribution has changed.

  Previous version: 2.5.7.1-6
  Current version:  2.5.7.1-7

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhqsp-0005mf...@ries.debian.org



libcgi 1.0-7 MIGRATED to testing

2010-02-16 Thread Debian testing watch
FYI: The status of the libcgi source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  1.0-7

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhqsp-0005oe...@ries.debian.org



mnogosearch 3.3.8-2 MIGRATED to testing

2010-02-16 Thread Debian testing watch
FYI: The status of the mnogosearch source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  3.3.8-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhqsp-0005oy...@ries.debian.org



smlnj 110.69-1 MIGRATED to testing

2010-02-16 Thread Debian testing watch
FYI: The status of the smlnj source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  110.69-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhqsq-0005qc...@ries.debian.org



xnc 5.0.4-4 MIGRATED to testing

2010-02-16 Thread Debian testing watch
FYI: The status of the xnc source package
in Debian's testing distribution has changed.

  Previous version: 5.0.4-3
  Current version:  5.0.4-4

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhqsr-0005ri...@ries.debian.org



Bug#355754: marked as done (directvnc: permissions)

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 17:34:27 +
with message-id e1nhrjb-0003ty...@ries.debian.org
and subject line Bug#355754: fixed in directvnc 0.7.6-1
has caused the Debian Bug report #355754,
regarding directvnc: permissions
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
355754: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=355754
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: directvnc
Severity: normal

in the README.Debian file you correctly say the user needs access to the
video device (/dev/fb0) and to the mouse. Ok. But when I tried to start
directvnc it quitted saying something about an initialization error.
I've straced it and the output is: [snip of last lines]

--
open(/dev/fb0, O_RDWR)= 4
setsid()= -1 EPERM (Operation not permitted)
open(/dev/tty0, O_RDONLY) = -1 EACCES (Permission denied)
write(2, dfb.c 47:\n\t, 13dfb.c 47:
) = 13
write(2, (#) DirectFBError [DirectFBCreat..., 66(#) DirectFBError 
[DirectFBCreate( dfb )]: Initialization error!
) = 66
exit_group(2)   = ?
--

I don't know much about frame buffer's use, but why directvnc wants to
use /dev/tty0? I was on tty1, which rightly belongs to the user, while
other ttys have root as owner.

As a quick-and-dirty solution I chmod'ed all ttys a+r (I know it's immoral,
but I've done so just because the machine have only one user that
automatically starts the vnc client, so it shouldn't be so hazardous) ;-)


Or there's something about the setsid() call returning EPERM?

thanks
Riccardo

ps. What do you mean with The display size is limited to 640x480? I
currently use directvnc with a 1024x768 resolution (both for the vnc
server and for the frame buffer).

post ps.
I'm using the latest package version in the testing distribution (0.7.5-7.1),
but not on this computer, so it doesn't appears below in the system info.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-686
Locale: lang=it...@euro, lc_ctype=it...@euro (charmap=ISO-8859-15)

---End Message---
---BeginMessage---
Source: directvnc
Source-Version: 0.7.6-1

We believe that the bug you reported is fixed in the latest version of
directvnc, which is due to be installed in the Debian FTP archive:

directvnc_0.7.6-1.debian.tar.gz
  to main/d/directvnc/directvnc_0.7.6-1.debian.tar.gz
directvnc_0.7.6-1.dsc
  to main/d/directvnc/directvnc_0.7.6-1.dsc
directvnc_0.7.6-1_amd64.deb
  to main/d/directvnc/directvnc_0.7.6-1_amd64.deb
directvnc_0.7.6.orig.tar.gz
  to main/d/directvnc/directvnc_0.7.6.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 355...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loris Boillet lboille...@gmail.com (supplier of updated directvnc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Feb 2010 09:13:09 +0100
Source: directvnc
Binary: directvnc
Architecture: source amd64
Version: 0.7.6-1
Distribution: unstable
Urgency: low
Maintainer: Loris Boillet lboille...@gmail.com
Changed-By: Loris Boillet lboille...@gmail.com
Description: 
 directvnc  - VNC client using the framebuffer as display
Closes: 355754 367169 490057 503390 538110
Changes: 
 directvnc (0.7.6-1) unstable; urgency=low
 .
   * New maintainer. (Closes: #367169)
   * New upstream release. (Closes: #490057, #503390, #538110)
 - debian/patches/directvnc-manpage-bpp.patch: Merged upstream.
 - Fix lintian warnings: ancient libtool and spelling errors in manpage.
   * Add a note in README.debian about needed access to /dev/tty0 if more than
 one directFB app is used at the same time (Closes: #355754)
   * Bump debian/compat to 7.
   * Update debian/control:
 - Bump Standards-Version from 3.6.2 to 3.8.4 (no changes needed).
 - Add Homepage field. Thanks to lintian.
 - Add missing ${misc:Depends}. Thanks to lintian.
 - Add build-depends to autotools-dev, autoconf, automake and libtool.
   * Fix copyright without copyright notice. Thanks to lintian.
   * Replacing obsolete 

Bug#538110: marked as done (Unusable -- DirectFBError [DirectFBSetOption (quiet, )]: Not supported!)

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 17:34:27 +
with message-id e1nhrjb-0003tt...@ries.debian.org
and subject line Bug#538110: fixed in directvnc 0.7.6-1
has caused the Debian Bug report #538110,
regarding Unusable -- DirectFBError [DirectFBSetOption (quiet, )]: Not 
supported!
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
538110: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=538110
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: directvnc
Version: 0.7.5-9+b1
Severity: important

On a server plum I created a VNC session using qemu:

plum$ qemu-system-x86_64 -snapshot -vnc :0 -hda foo.qcow2

Then I tried to connect to it with directvnc.  I got this failure.  I
have no idea what it means or how to fix it:

$ directvnc plum
You did not specify a display to connect to. I will assume 0.
(!) DirectFB/Config 'quiet': Unknown message type ''!
(!) DirectFB/Config 'quiet': Unknown message type ''!
dfb.c 44:
(#) DirectFBError [DirectFBSetOption (quiet, )]: Not supported!
$ echo $?
5

My .directfbrc is this:

no-banner
dma
capslock-meta
bg-color=00
# vt-switching
# wm=unique
# decorations

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

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

Versions of packages directvnc depends on:
ii  libc6  2.9-12GNU C Library: Shared libraries
ii  libdirectfb-1.2-0  1.2.7-2   direct frame buffer graphics - sha
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

directvnc recommends no packages.

directvnc suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: directvnc
Source-Version: 0.7.6-1

We believe that the bug you reported is fixed in the latest version of
directvnc, which is due to be installed in the Debian FTP archive:

directvnc_0.7.6-1.debian.tar.gz
  to main/d/directvnc/directvnc_0.7.6-1.debian.tar.gz
directvnc_0.7.6-1.dsc
  to main/d/directvnc/directvnc_0.7.6-1.dsc
directvnc_0.7.6-1_amd64.deb
  to main/d/directvnc/directvnc_0.7.6-1_amd64.deb
directvnc_0.7.6.orig.tar.gz
  to main/d/directvnc/directvnc_0.7.6.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 538...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loris Boillet lboille...@gmail.com (supplier of updated directvnc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Feb 2010 09:13:09 +0100
Source: directvnc
Binary: directvnc
Architecture: source amd64
Version: 0.7.6-1
Distribution: unstable
Urgency: low
Maintainer: Loris Boillet lboille...@gmail.com
Changed-By: Loris Boillet lboille...@gmail.com
Description: 
 directvnc  - VNC client using the framebuffer as display
Closes: 355754 367169 490057 503390 538110
Changes: 
 directvnc (0.7.6-1) unstable; urgency=low
 .
   * New maintainer. (Closes: #367169)
   * New upstream release. (Closes: #490057, #503390, #538110)
 - debian/patches/directvnc-manpage-bpp.patch: Merged upstream.
 - Fix lintian warnings: ancient libtool and spelling errors in manpage.
   * Add a note in README.debian about needed access to /dev/tty0 if more than
 one directFB app is used at the same time (Closes: #355754)
   * Bump debian/compat to 7.
   * Update debian/control:
 - Bump Standards-Version from 3.6.2 to 3.8.4 (no changes needed).
 - Add Homepage field. Thanks to lintian.
 - Add missing ${misc:Depends}. Thanks to lintian.
 - Add build-depends to autotools-dev, autoconf, automake and libtool.
   * Fix copyright without copyright notice. Thanks to lintian.
   * Replacing obsolete dh_clean -k with dh_prep.
   * Switch to dpkg-source 3.0 (quilt) format.
   * Autotools files now systematically re-generated (adds debian/autogen.sh).
   * Cleaned-up debian/rules: removed commented out dh_* commands.
Checksums-Sha1: 
 

Bug#490057: marked as done (directvnc: encodings others than raw don't work)

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 17:34:27 +
with message-id e1nhrjb-0003tj...@ries.debian.org
and subject line Bug#490057: fixed in directvnc 0.7.6-1
has caused the Debian Bug report #490057,
regarding directvnc: encodings others than raw don't work
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
490057: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=490057
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: directvnc
Version: 0.7.5-8
Severity: important
Tags: patch

This patch corrects following bug:
only raw encoding is used by directvnc, even if no encoding is specified 
(default order should be copyrect tight hextile zlib corre rre raw) or 
if one other than raw is specified with the -e option. 

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.20.21
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8

Versions of packages directvnc depends on:
ii  libc6  2.3.6.ds1-13etch5 GNU C Library: Shared libraries
ii  libdirectfb-1.0-0  1.0.1-7   direct frame buffer graphics - sha
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  zlib1g 1:1.2.3-13compression library - runtime

directvnc recommends no packages.
diff -u directvnc-0.7.5/src/rfb.c directvnc-0.7.5.new/src/rfb.c
--- directvnc-0.7.5/src/rfb.c	2003-01-31 09:41:03.0 +0100
+++ directvnc-0.7.5.new/src/rfb.c	2008-07-07 13:12:18.0 +0200
@@ -248,6 +248,8 @@
if (!write_exact(sock, (char*)pf, sz_rfbSetPixelFormatMsg)) return 0;
 
em.type = rfbSetEncodings;
+   em.nEncodings = 0;
+   
/* figure out the encodings string given on the command line */
next = strtok(opt.encodings,  );
while (next  em.nEncodings  MAX_ENCODINGS)
---End Message---
---BeginMessage---
Source: directvnc
Source-Version: 0.7.6-1

We believe that the bug you reported is fixed in the latest version of
directvnc, which is due to be installed in the Debian FTP archive:

directvnc_0.7.6-1.debian.tar.gz
  to main/d/directvnc/directvnc_0.7.6-1.debian.tar.gz
directvnc_0.7.6-1.dsc
  to main/d/directvnc/directvnc_0.7.6-1.dsc
directvnc_0.7.6-1_amd64.deb
  to main/d/directvnc/directvnc_0.7.6-1_amd64.deb
directvnc_0.7.6.orig.tar.gz
  to main/d/directvnc/directvnc_0.7.6.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 490...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loris Boillet lboille...@gmail.com (supplier of updated directvnc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Feb 2010 09:13:09 +0100
Source: directvnc
Binary: directvnc
Architecture: source amd64
Version: 0.7.6-1
Distribution: unstable
Urgency: low
Maintainer: Loris Boillet lboille...@gmail.com
Changed-By: Loris Boillet lboille...@gmail.com
Description: 
 directvnc  - VNC client using the framebuffer as display
Closes: 355754 367169 490057 503390 538110
Changes: 
 directvnc (0.7.6-1) unstable; urgency=low
 .
   * New maintainer. (Closes: #367169)
   * New upstream release. (Closes: #490057, #503390, #538110)
 - debian/patches/directvnc-manpage-bpp.patch: Merged upstream.
 - Fix lintian warnings: ancient libtool and spelling errors in manpage.
   * Add a note in README.debian about needed access to /dev/tty0 if more than
 one directFB app is used at the same time (Closes: #355754)
   * Bump debian/compat to 7.
   * Update debian/control:
 - Bump Standards-Version from 3.6.2 to 3.8.4 (no changes needed).
 - Add Homepage field. Thanks to lintian.
 - Add missing ${misc:Depends}. Thanks to lintian.
 - Add build-depends to autotools-dev, autoconf, automake and libtool.
   * Fix copyright without copyright notice. Thanks to lintian.
   * Replacing obsolete dh_clean -k with dh_prep.
   * Switch to dpkg-source 3.0 (quilt) format.
   * Autotools files now systematically re-generated (adds debian/autogen.sh).
   * Cleaned-up debian/rules: removed commented out dh_* commands.
Checksums-Sha1: 
 6d90ab68bd38233aac89fb2ada18af1b3bc872c8 1167 directvnc_0.7.6-1.dsc
 036e90cdb213f09ad1c16a1de230e4ec0bb1271d 

Bug#570089: marked as done (exactimage: embedded copy of AGG)

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 18:47:51 +
with message-id e1nhssd-0004yq...@ries.debian.org
and subject line Bug#570089: fixed in exactimage 0.7.5-1
has caused the Debian Bug report #570089,
regarding exactimage: embedded copy of AGG
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
570089: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570089
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Source: exactimage
Version: 0.7.4-3
Severity: important

extactimage embeds (and uses) a private copy of the AGG library. 
It should use the system-wide library instead.


--
Jakub Wilk


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: exactimage
Source-Version: 0.7.5-1

We believe that the bug you reported is fixed in the latest version of
exactimage, which is due to be installed in the Debian FTP archive:

exactimage-dbg_0.7.5-1_i386.deb
  to main/e/exactimage/exactimage-dbg_0.7.5-1_i386.deb
exactimage-perl_0.7.5-1_i386.deb
  to main/e/exactimage/exactimage-perl_0.7.5-1_i386.deb
exactimage_0.7.5-1.debian.tar.gz
  to main/e/exactimage/exactimage_0.7.5-1.debian.tar.gz
exactimage_0.7.5-1.dsc
  to main/e/exactimage/exactimage_0.7.5-1.dsc
exactimage_0.7.5-1_i386.deb
  to main/e/exactimage/exactimage_0.7.5-1_i386.deb
exactimage_0.7.5.orig.tar.bz2
  to main/e/exactimage/exactimage_0.7.5.orig.tar.bz2
php5-exactimage_0.7.5-1_i386.deb
  to main/e/exactimage/php5-exactimage_0.7.5-1_i386.deb
python-exactimage_0.7.5-1_i386.deb
  to main/e/exactimage/python-exactimage_0.7.5-1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 570...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jakub Wilk jw...@debian.org (supplier of updated exactimage package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 16 Feb 2010 18:34:31 +0100
Source: exactimage
Binary: exactimage exactimage-dbg exactimage-perl php5-exactimage 
python-exactimage
Architecture: source i386
Version: 0.7.5-1
Distribution: unstable
Urgency: low
Maintainer: Jakub Wilk jw...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 exactimage - fast image manipulation programs
 exactimage-dbg - fast image manipulation programs (debug symbols)
 exactimage-perl - fast image manipulation programs (Perl bindings)
 php5-exactimage - fast image manipulation programs (PHP bindings)
 python-exactimage - fast image manipulation programs (Python bindings)
Closes: 543838 568671 570089
Changes: 
 exactimage (0.7.5-1) unstable; urgency=low
 .
   * New upstream release.
   * New maintainer (closes: #543838).
   * Switch to source format 3.0 (quilt).
   * Various improvements in package building:
 + Add ‘X_SYSTEM=Linux’ to each make invocation to enable compilation on
   non-Linux systems.
 + Fix building Python modules (closes: #568671):
   - Add XS-Python-Version header.
   - Build depend on python-dev (= 2.5.4) rather than python-all-dev (for
 now, only modules for the current Python version are built).
   - As upstream Makefile always put the modules in 2.5 directory, move
 them into the right one in debian/rules.
   - Move *.so with detached symbols to a directory where gdb will expect
 it.
   - Update debian/*.install to catch both site-packages and dist-packages.
   - Drop debian/pycompat.
 + Fix syntax and name errors. [utility-timer-syntax-error.diff,
   edisplay-dpy.diff]
 + Link with system copy of AGG (closes: #570089):
   - Update debian/rules.
   - Add missing includes. [agg-missing-includes.diff]
   - Use PIC version of static AGG library. [agg-pic.diff]
 + Don't let the configure script be called more that once.
 + Produce debugging information for the core library.
 + Respect the ‘noopt’ build option.
   [makefile-cflags.diff]
 + Use LDFLAGS=-Wl,--as-needed to avoid superfluous runtime dependencies.
   * Fix exactimage-dbg package description.
   * Remove duplicate section field for the binary package.
   * Add ‘Depends: ${misc:Depends}’ to binary packages.
   * Add watchfile.
   * Fix typos: in the manual pages and in frontends/econvert.cc.
 

Bug#568671: marked as done (exactimage: produces broken Python bindings with Python 2.6)

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 18:47:51 +
with message-id e1nhssd-0004yj...@ries.debian.org
and subject line Bug#568671: fixed in exactimage 0.7.5-1
has caused the Debian Bug report #568671,
regarding exactimage: produces broken Python bindings with Python 2.6
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
568671: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=568671
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Package: exactimage
Version: 0.7.4-3
Severity: important
User: debian-pyt...@lists.debian.org
Usertags: python2.6

Despite depending on python-all-dev, Python bindings are built only for 
the current Python version. Worse still, these modules are always put 
into /usr/lib/python2.5, regardless of which version of Python is really 
used.


--
Jakub Wilk


---End Message---
---BeginMessage---
Source: exactimage
Source-Version: 0.7.5-1

We believe that the bug you reported is fixed in the latest version of
exactimage, which is due to be installed in the Debian FTP archive:

exactimage-dbg_0.7.5-1_i386.deb
  to main/e/exactimage/exactimage-dbg_0.7.5-1_i386.deb
exactimage-perl_0.7.5-1_i386.deb
  to main/e/exactimage/exactimage-perl_0.7.5-1_i386.deb
exactimage_0.7.5-1.debian.tar.gz
  to main/e/exactimage/exactimage_0.7.5-1.debian.tar.gz
exactimage_0.7.5-1.dsc
  to main/e/exactimage/exactimage_0.7.5-1.dsc
exactimage_0.7.5-1_i386.deb
  to main/e/exactimage/exactimage_0.7.5-1_i386.deb
exactimage_0.7.5.orig.tar.bz2
  to main/e/exactimage/exactimage_0.7.5.orig.tar.bz2
php5-exactimage_0.7.5-1_i386.deb
  to main/e/exactimage/php5-exactimage_0.7.5-1_i386.deb
python-exactimage_0.7.5-1_i386.deb
  to main/e/exactimage/python-exactimage_0.7.5-1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 568...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jakub Wilk jw...@debian.org (supplier of updated exactimage package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 16 Feb 2010 18:34:31 +0100
Source: exactimage
Binary: exactimage exactimage-dbg exactimage-perl php5-exactimage 
python-exactimage
Architecture: source i386
Version: 0.7.5-1
Distribution: unstable
Urgency: low
Maintainer: Jakub Wilk jw...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 exactimage - fast image manipulation programs
 exactimage-dbg - fast image manipulation programs (debug symbols)
 exactimage-perl - fast image manipulation programs (Perl bindings)
 php5-exactimage - fast image manipulation programs (PHP bindings)
 python-exactimage - fast image manipulation programs (Python bindings)
Closes: 543838 568671 570089
Changes: 
 exactimage (0.7.5-1) unstable; urgency=low
 .
   * New upstream release.
   * New maintainer (closes: #543838).
   * Switch to source format 3.0 (quilt).
   * Various improvements in package building:
 + Add ‘X_SYSTEM=Linux’ to each make invocation to enable compilation on
   non-Linux systems.
 + Fix building Python modules (closes: #568671):
   - Add XS-Python-Version header.
   - Build depend on python-dev (= 2.5.4) rather than python-all-dev (for
 now, only modules for the current Python version are built).
   - As upstream Makefile always put the modules in 2.5 directory, move
 them into the right one in debian/rules.
   - Move *.so with detached symbols to a directory where gdb will expect
 it.
   - Update debian/*.install to catch both site-packages and dist-packages.
   - Drop debian/pycompat.
 + Fix syntax and name errors. [utility-timer-syntax-error.diff,
   edisplay-dpy.diff]
 + Link with system copy of AGG (closes: #570089):
   - Update debian/rules.
   - Add missing includes. [agg-missing-includes.diff]
   - Use PIC version of static AGG library. [agg-pic.diff]
 + Don't let the configure script be called more that once.
 + Produce debugging information for the core library.
 + Respect the ‘noopt’ build option.
   [makefile-cflags.diff]
 + Use LDFLAGS=-Wl,--as-needed to avoid superfluous runtime dependencies.
   * Fix exactimage-dbg package description.
   * Remove duplicate section field for the binary package.
   * Add 

Bug#474336: marked as done (snooper: should this package be removed?)

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 19:02:09 +
with message-id e1nhsgt-0006lr...@ries.debian.org
and subject line Bug#474336: fixed in snooper 19991202-7
has caused the Debian Bug report #474336,
regarding snooper: should this package be removed?
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
474336: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474336
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Package: snooper
Version: 19991202-4
Severity: serious
User: debian...@lists.debian.org
Usertags: proposed-removal

Dear Maintainer,

While reviewing some packages, your package came up as a possible
candidate for removal from Debian, because:

* Out of date.
* Buggy
* Low popcon. ~78 installs.
* No upstream release since 1999.

If you think that it should be orphaned instead of being removed from
Debian, please reply to this bug and tell so.

If you disagree and want to continue to maintain this package, please
just close this bug and do an upload also fixing the other issues.

If you agree that it should be removed, send the following commands to
cont...@bugs.debian.org (replace nn with this bug's number):

severity nn normal
reassign nn ftp.debian.org
retitle nn RM: packagename -- RoM; reasons
thanks

For more information, see
http://wiki.debian.org/ftpmaster_Removals
http://ftp-master.debian.org/removals.txt

Thank you,

Barry deFreese



---End Message---
---BeginMessage---
Source: snooper
Source-Version: 19991202-7

We believe that the bug you reported is fixed in the latest version of
snooper, which is due to be installed in the Debian FTP archive:

snooper_19991202-7.diff.gz
  to main/s/snooper/snooper_19991202-7.diff.gz
snooper_19991202-7.dsc
  to main/s/snooper/snooper_19991202-7.dsc
snooper_19991202-7_amd64.deb
  to main/s/snooper/snooper_19991202-7_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 474...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Bauer stefan.ba...@cubewerk.de (supplier of updated snooper package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 15 Feb 2010 09:51:17 +0100
Source: snooper
Binary: snooper
Architecture: source amd64
Version: 19991202-7
Distribution: unstable
Urgency: low
Maintainer: Stefan Bauer stefan.ba...@cubewerk.de
Changed-By: Stefan Bauer stefan.ba...@cubewerk.de
Description: 
 snooper- Captures communication between two external serial devices
Closes: 182656 474336 487735
Changes: 
 snooper (19991202-7) unstable; urgency=low
 .
   * New Maintainer (Closes: #487735, #474336)
   * Acknowledge NMU changes
   * Bump Standards to 3.8.4
   * Get the package lintian clean
   * Bump debhelper dependecies to 7.0.50
   * Extended README.Debian to show howto snoop traffic with only one
 computer and a modem (Closes: #182656)
Checksums-Sha1: 
 9d212abebb34ea7dc4a366782f92da9b24bfb7b7 1037 snooper_19991202-7.dsc
 31b61dfc3eaf4247e12c0608d9ad251122335b9d 10418 snooper_19991202-7.diff.gz
 36525cf455c012efbb46ddf7ba15c2ba6f988996 19826 snooper_19991202-7_amd64.deb
Checksums-Sha256: 
 9ab5070ee46d67741d3d33aa14f25cbc2f1044d4c6b9fa2a1a419da33f85fc42 1037 
snooper_19991202-7.dsc
 d83e912bc53dd8db1847537f2347188a35486c4cad5bbb7617c00594350c507e 10418 
snooper_19991202-7.diff.gz
 2efc19ce37ec7837b385f97297d64a4bfa4247566e4720b52bf07526a6b733bd 19826 
snooper_19991202-7_amd64.deb
Files: 
 e41eb41be49bc62d486367ffb524e6c7 1037 comm optional snooper_19991202-7.dsc
 70e763e8dc00a9708ab5aba4a5ce2baf 10418 comm optional snooper_19991202-7.diff.gz
 b856896e70e83af2842203ace3b6a65c 19826 comm optional 
snooper_19991202-7_amd64.deb

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

iD8DBQFLeuksVkEm8inxm9ERArAGAJ4idat1HsRcd2B6Y3yiIA+q5iDeGwCeKJK+
Pi4v+f/M9fExaLWrlD/tkXI=
=SlGR
-END PGP SIGNATURE-


---End Message---


Bug#182656: marked as done (snooper: i only have one computer and one modem)

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 19:02:09 +
with message-id e1nhsgt-0006ll...@ries.debian.org
and subject line Bug#182656: fixed in snooper 19991202-7
has caused the Debian Bug report #182656,
regarding snooper: i only have one computer and one modem
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
182656: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=182656
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: snooper
Version: 19991202-3
Severity: wishlist
Tags: upstream

here is a record of my first impressions of this program, in order for
you to beef up the docs.

i do man snooper.  i only have one computer and one modem. i read the
man page but cant figure out how to trace communication between my
computer and my modem.

$ snooper 
no device specified
08:44 1 ~$ snooper /dev/ttyS0
no device specified
08:44 1 ~$ snooper /dev/tty /dev/ttyS0
ioctl(TIOCMGET): Invalid argument
 08:45 1 ~$ 08:45 1 ~$ 08:45 1 ~$ stty sane
08:45 ~$ snooper /dev/ttyS0 /dev/tty 
ioctl(TIOCMGET): Invalid argument

i now suppose i should look at /usr/share/doc/snooper/
yes, i am in dialout.

more guessing about how to record e.g. what minicom etc. really says
to the modem,

$ snooper /tmp/a /dev/ttyS0
inappropriate devices specified

you see,
 It is also possible to operate with a single serial device, using your
 console and keyboard as the second device.
is a mystery to me.

$ snooper /dev/null /dev/ttyS0
tcgetattr: Inappropriate ioctl for device
$ snooper  /dev/ttyS0 /dev/null
tcgetattr: Inappropriate ioctl for device

who knows.

 C   Make the console act as one of the serial lines. 

sounds great, if i could only start the program.

snooper /dev/ttyS0  /dev/ttyS0
works
by the way, the screen should note Q to Quit, etc. maybe

ok, in another window
$ minicom 
Device /dev/ttyS0 is locked.

ok, using snooper -u and minicom and... Segmentation fault

ok i try just snooper /dev/ttyS0  /dev/ttyS0
and no minicom and use C /dev/ttyS0 and type one char ans Segmentation
fault

ok now try C 0
same fault.

anyway maybe instead of telling me how to use the program. beef up the
docs for all to enjoy.

ok, i will find a more appropriate program via
$ apt-cache search serial|sort

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux debian 2.4.20-k7 #1 Tue Jan 14 00:29:06 EST 2003 i686
Locale: LANG=zh_TW.Big5, LC_CTYPE=zh_TW.Big5

Versions of packages snooper depends on:
ii  libc6 2.3.1-10   GNU C Library: Shared libraries an
ii  liblockdev1   1.0.1-4.1  Run-time shared library for lockin
ii  libncurses5   5.3.20021109-2 Shared libraries for terminal hand

-- no debconf information


---End Message---
---BeginMessage---
Source: snooper
Source-Version: 19991202-7

We believe that the bug you reported is fixed in the latest version of
snooper, which is due to be installed in the Debian FTP archive:

snooper_19991202-7.diff.gz
  to main/s/snooper/snooper_19991202-7.diff.gz
snooper_19991202-7.dsc
  to main/s/snooper/snooper_19991202-7.dsc
snooper_19991202-7_amd64.deb
  to main/s/snooper/snooper_19991202-7_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 182...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Bauer stefan.ba...@cubewerk.de (supplier of updated snooper package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 15 Feb 2010 09:51:17 +0100
Source: snooper
Binary: snooper
Architecture: source amd64
Version: 19991202-7
Distribution: unstable
Urgency: low
Maintainer: Stefan Bauer stefan.ba...@cubewerk.de
Changed-By: Stefan Bauer stefan.ba...@cubewerk.de
Description: 
 snooper- Captures communication between two external serial devices
Closes: 182656 474336 487735
Changes: 
 snooper (19991202-7) unstable; urgency=low
 .
   * New Maintainer (Closes: #487735, #474336)
   * Acknowledge NMU changes
   * Bump Standards to 3.8.4
   * Get the package lintian clean
   * Bump debhelper dependecies to 7.0.50
   * Extended README.Debian to show howto snoop traffic with only one
 computer and a modem (Closes: #182656)
Checksums-Sha1: 
 

Processed: severity of 567963 is normal

2010-02-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 567963 normal
Bug #567963 [yagiuda] yagiuda: -t and -T can't be specified together as 
indicated in doc
Severity set to 'normal' from 'grave'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12663476656262.transcr...@bugs.debian.org



Processed: tagging 567963

2010-02-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 567963 patch
Bug #567963 [yagiuda] yagiuda: -t and -T can't be specified together as 
indicated in doc
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12663476816674.transcr...@bugs.debian.org



Processing of yafray_0.0.9+dfsg-4_amd64.changes

2010-02-16 Thread Archive Administrator
yafray_0.0.9+dfsg-4_amd64.changes uploaded successfully to ftp-master.debian.org
along with the files:
  yafray_0.0.9+dfsg-4.dsc
  yafray_0.0.9+dfsg-4.diff.gz
  yafray_0.0.9+dfsg-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host kassia.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhuuj-0005ep...@kassia.debian.org



Processing of yafray_0.0.9+dfsg-4_amd64.changes

2010-02-16 Thread Archive Administrator
yafray_0.0.9+dfsg-4_amd64.changes uploaded successfully to localhost
along with the files:
  yafray_0.0.9+dfsg-4.dsc
  yafray_0.0.9+dfsg-4.diff.gz
  yafray_0.0.9+dfsg-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhuxw-0004sn...@ries.debian.org



yafray_0.0.9+dfsg-4_amd64.changes ACCEPTED

2010-02-16 Thread Archive Administrator



Accepted:
yafray_0.0.9+dfsg-4.diff.gz
  to main/y/yafray/yafray_0.0.9+dfsg-4.diff.gz
yafray_0.0.9+dfsg-4.dsc
  to main/y/yafray/yafray_0.0.9+dfsg-4.dsc
yafray_0.0.9+dfsg-4_amd64.deb
  to main/y/yafray/yafray_0.0.9+dfsg-4_amd64.deb


Override entries for your package:
yafray_0.0.9+dfsg-4.dsc - source graphics
yafray_0.0.9+dfsg-4_amd64.deb - optional graphics

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 568629 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1nhvpn-0003xq...@ries.debian.org



Die Diaet der Hollywood Stars

2010-02-16 Thread Dr. Lind Koch
Die Resultate in den USA, das ist der Beweis vollkommen neues Produkt zur
Gewichtsreduktion hat in den USA die Schlankheitsindustrie vollstaendig
umgekrempelt. Ab jetzt ist es realisierbar, nicht das Gewicht zu verringern,
indem Sie dem Stoffwechsel weniger Nahrung zufuehren, sondern indem Sie ihn
dazu anregen die 
aufgenommenen Kalorien schneller zu verbrauchen. Und zwar so effektiv, dass
auch die hartnaeckigen Poelsterchen, die sich ueber lange Zeit hinweg
abgelagert haben, dabei verschwinden.

Sie glauben das nicht? Probieren Sie es und Sie werden prompt ueberzeugt
werden, denn Sie werden praktisch zukucken koennen, wie Ihre Kilo
verschwinden. So werden Sie fast von allein schlank.

http://bit.ly/cJSKXp

Mit netten Gruessen
Dr. Lind Koch


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/3701b841.925a5...@cybercable.net.mx



Bug#568629: marked as done (yafray: FTBFS on hurd-i386: unrecognized platform)

2010-02-16 Thread Debian Bug Tracking System
Your message dated Tue, 16 Feb 2010 22:23:33 +
with message-id e1nhvpn-0003xz...@ries.debian.org
and subject line Bug#568629: fixed in yafray 0.0.9+dfsg-4
has caused the Debian Bug report #568629,
regarding yafray: FTBFS on hurd-i386: unrecognized platform
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
568629: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=568629
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: yafray
Version: 0.0.9+dfsg-3
Severity: important
Tags: patch
User: debian-h...@lists.debian.org
Usertags: hurd

Hi,

currently[1] yafray cannot be compiled on GNU/Hurd, because there is no
platform entry for hurd in the 'ficheros' dictionary in SConstruct.
The attached patches adds the correct entry ('gnu0' is the 'sys.platform' on
GNU/Hurd).

[1] 
https://buildd.debian.org/fetch.cgi?pkg=yafrayarch=hurd-i386ver=0.0.9+dfsg-3stamp=1265433859file=logas=raw

Thanks,
-- 
Pino
#! /bin/sh /usr/share/dpatch/dpatch-run
## 80_hurd_support.dpatch by Pino Toscano toscano.p...@tiscali.it
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Add support for GNU/Hurd

@DPATCH@

--- a/SConstruct
+++ b/SConstruct
@@ -13,7 +13,8 @@
 'sunos5' : 'sunos5-settings',
 'gnukfreebsd5' : 'linux-settings',
 'gnukfreebsd6' : 'linux-settings',
-'gnukfreebsd7' : 'linux-settings'
+'gnukfreebsd7' : 'linux-settings',
+'gnu0' : 'linux-settings',
 }
 
 fichero = ficheros[sys.platform.split('-')[0]]
---End Message---
---BeginMessage---
Source: yafray
Source-Version: 0.0.9+dfsg-4

We believe that the bug you reported is fixed in the latest version of
yafray, which is due to be installed in the Debian FTP archive:

yafray_0.0.9+dfsg-4.diff.gz
  to main/y/yafray/yafray_0.0.9+dfsg-4.diff.gz
yafray_0.0.9+dfsg-4.dsc
  to main/y/yafray/yafray_0.0.9+dfsg-4.dsc
yafray_0.0.9+dfsg-4_amd64.deb
  to main/y/yafray/yafray_0.0.9+dfsg-4_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 568...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ralf Treinen trei...@debian.org (supplier of updated yafray package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 16 Feb 2010 21:40:48 +0100
Source: yafray
Binary: yafray
Architecture: source amd64
Version: 0.0.9+dfsg-4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 yafray - a modern, xml-speaking raytracing-based rendering system
Closes: 568629
Changes: 
 yafray (0.0.9+dfsg-4) unstable; urgency=low
 .
   * QA upload
   * Added hurd support (patch:80_hurd_support). Thanks a lot to Pino Toscano
 for having send in the patch!  (Closes: #568629).
   * Removed Uploaders.
Checksums-Sha1: 
 2da9e41cecd85a42845e5ad5e08586008f81844b 1194 yafray_0.0.9+dfsg-4.dsc
 a956c1221d822c83829a62dbddc91355b7975749 9832 yafray_0.0.9+dfsg-4.diff.gz
 1b533c14529b9a5addad62bdf1ba382556687353 619272 yafray_0.0.9+dfsg-4_amd64.deb
Checksums-Sha256: 
 ebb76781b7ce2a4b1a4d7a1f951eda5560346e69205c1f7cc0b55bec2ee327ee 1194 
yafray_0.0.9+dfsg-4.dsc
 1201b40cd95d1cdbe1a02f582eedb6de5b2baec67c2fecda5b31a41c25c5a6b0 9832 
yafray_0.0.9+dfsg-4.diff.gz
 7bbde8105f0d6291cda58b269f34211992100a18a3a5238915483152006dbef3 619272 
yafray_0.0.9+dfsg-4_amd64.deb
Files: 
 74989b7f66b57b2c87ffd1dd130267a4 1194 graphics optional yafray_0.0.9+dfsg-4.dsc
 7d51b1dd377098b5ac20adf0841dd5b9 9832 graphics optional 
yafray_0.0.9+dfsg-4.diff.gz
 82561dabcfbee6808d2c65d7b2b31b5f 619272 graphics optional 
yafray_0.0.9+dfsg-4_amd64.deb

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

iD8DBQFLewXytzWmSeC6BMERApEzAKCrG74KXS8ObcFF+B5LIe4PYyIu9gCbBkW9
FB2F4JoUdwefvMfu6Vt1aoE=
=+YWI
-END PGP SIGNATURE-


---End Message---


Как за 4 минуты заказать и купить любую мебель

2010-02-16 Thread Мебель онлайн

Диваны и мягкая мебель (эконом и ВИП-класса)
Мягкая мебель (модульная) всех видов и размеров
Покупать через Интернет - выгодно, быстро и удобно
Праздничные скидки. Огромный выбор ткани и кожи.
Обратитесь к нам - и Вы сможете выбрать лучшую мебель
Вся информацию - 8 (916) 79 934 85

Bug#559814: ITA: hamlib / new version for upload

2010-02-16 Thread Kamal Mostafa
After discussion with Steve Conklin (who filed an ITA for 'hamlib' a few
months ago) we have determined that I will volunteer to adopt and
maintain 'hamlib' instead of him.

For reference, I am a ham radio operator (KA6MAL), I do use hamlib
regularly, and I have developed applications which use the library.  

I have packaged the new upstream release (hamlib 1.2.10) which I propose
for review and upload by a kindly DD:

http://www.whence.com/debian/proposed/hamlib_1.2.10-1.dsc

This package includes my fix for bug 559814 (CVE-2009-3736 local libltdl
privilege escalation), and minor Python 2.6 changes from Ubuntu.

I wasn't sure what to do with the debian/control Uploaders: field.  As
a placeholder, I set it to the debian-h...@lists.debian.org list address
-- I expect that it will be changed by the actual uploader:

  Uploaders: Debian Hamradio Maintainers debian-h...@lists.debian.org

This is my first experience with maintenance of a package at Debian, so
I am not at all sure that I'm following the proper procedures here.  Any
guidance will be much appreciated.

Thanks,

 -Kamal Mostafa ka...@whence.com



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