Bug#989951: The autopkgtests are failing with the new tiff version

2021-06-16 Thread Robert Ancell
This is due to the new tiff headers adding deprecation defines and is fixed
in the following PR. Not sure how active upstream is, this may be worth
carrying as a Debian patch.
https://github.com/pearu/pylibtiff/pull/128


Bug#989923: Tests fail when server is running 24x80 terminal

2021-06-15 Thread Robert Ancell
Package: notcurses
Version: 2.3.4+dfsg.1-2

This package is failing to build on Ubuntu due to the tests failing as the
terminal size is too small:
 notcurses 2.3.4 by nick black et al on XTerm [34m
  20 rows 76 cols (23.75KiB) 48B crend 8 colors
  compiled with gcc-10.3.0, 16B little-endian cells
  terminfo from ncurses 6.2.20201114
  avformat 58.45.100 avutil 56.51.100 swscale 5.7.100
...
At least an 76x24 terminal is required (current: 76x20)

This is due to the -m2 that is passed to notcurses-demo. If that is changed
to a -m0,2,0,2 (i.e. only have left and right margins) then the tests pass
as the height of the terminal is high enough. I'm not sure if these tests
are being run on the Debian build servers, and if they are why they pass
there.

Please consider changing the test to avoid this issue, thanks!

See https://launchpad.net/bugs/1932103 for the Ubuntu bug.


Bug#944363: Please upgrade to version 1.49

2019-11-24 Thread Robert Ancell
Hi Laurent,

Sorry, I don't have upload rights, so I've just been updating the git repo.
If you are able to upload please do!

On Mon, Nov 11, 2019 at 12:26 AM Laurent Bigonville 
wrote:

> Hello Robert,
>
> On Fri, 08 Nov 2019 16:25:24 +0100 Laurent Bigonville 
> wrote:
>
> >
> > Hi,
> >
> > Could someone update snapd-glib to >= 1.49?
> >
>
> > This is blocking the upload of gnome-software in unstable
>
> I see that you were the last one to push a change in the git repository
> of snapd-glib, are there any hopes you could upload that to unstable?
>
> I can do it if you want,
>
> >
> > Kind regards,
> >
> > Laurent Bigonville
>
>


Bug#800928: realmd: FTBFS with GLib 2.45.7

2015-10-04 Thread Robert Ancell
Package: realmd
Severity: normal

Dear Maintainer,

realmd FTBFS with GLib 2.45.7, see patch in:
https://bugs.freedesktop.org/show_bug.cgi?id=92282

Thanks,
--Robert

-- System Information:
Debian Release: jessie/sid
  APT prefers wily-updates
  APT policy: (500, 'wily-updates'), (500, 'wily-security'), (500, 
'wily-proposed'), (500, 'wily'), (500, 'trusty-updates'), (500, 'trusty'), 
(100, 'wily-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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



Bug#797174: render: Support extension version 0.10

2015-08-28 Thread Robert Ancell
Package: xtrace
Version: 1.3.1-1
Severity: wishlist
Tags: patch

Please consider this patch for inclusion in xtrace.

-- System Information:
Debian Release: jessie/sid
  APT prefers wily-updates
  APT policy: (500, 'wily-updates'), (500, 'wily-security'), (500, 
'wily-proposed'), (500, 'wily'), (500, 'trusty-updates'), (500, 'trusty'), 
(100, 'wily-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages xtrace depends on:
ii  libc6  2.21-0ubuntu4

xtrace recommends no packages.

Versions of packages xtrace suggests:
ii  xauth  1:1.0.9-1ubuntu2

-- no debconf information
From df34c2c840aee1be012b6b40760d094b60c998a3 Mon Sep 17 00:00:00 2001
From: Robert Ancell robert.anc...@canonical.com
Date: Thu, 27 Aug 2015 12:45:48 +0100
Subject: [PATCH 1/4] render: Support extension version 0.10

---
 render.proto | 56 ++--
 1 file changed, 50 insertions(+), 6 deletions(-)

diff --git a/render.proto b/render.proto
index a232bf9..4fcfe81 100644
--- a/render.proto
+++ b/render.proto
@@ -77,7 +77,12 @@ SetPictureFilter
 # 0.8
 CreateAnimCursor
 # 0.9
-AddTraps	/*32*/
+AddTraps
+# 0.10
+CreateSolidFill
+CreateLinearGradient
+CreateRadialGradient
+CreateConicalGradient /* 36 */
 END
 
 EVENTS
@@ -226,7 +231,14 @@ LIST IndexValue length 12
  10	alpha	CARD16
 END
 
-LIST POINTFIXED length 8
+STRUCT COLOR length 8
+ 0	red	CARD16
+ 2	green	CARD16
+ 4	blue	CARD16
+ 6	alpha	CARD16
+END
+
+STRUCT POINTFIXED length 8
  0	x	FIXED
  4	y	FIXED
 END
@@ -490,10 +502,7 @@ END
 REQUEST FillRectangles
  4	op	PictOp
  8	dst	PICTURE
-12	red	CARD16
-14	green	CARD16
-16	blue	CARD16
-18	alpha	CARD16
+12	color	COLOR
 20	rects	LISTofRECTANGLE
 END
 
@@ -566,4 +575,39 @@ REQUEST AddTraps
 12	traps	LISTofTRAP
 END
 
+REQUEST CreateSolidFill
+ 4	picture	PICTURE
+ 8	color	COLOR
+END
+
+REQUEST CreateLinearGradient
+ 4	picture	PICTURE
+ 8	p1	POINTFIXED
+16	p2	POINTFIXED
+24	numStops	COUNT32
+28	stops	LISTofFIXED
+RESET_COUNTER
+LATER	colors	LISTofCOLOR
+END
+
+REQUEST CreateRadialGradient
+ 4	picture	PICTURE
+ 8	inner	POINTFIXED
+16	outer	POINTFIXED
+24	innerRadius	FIXED
+28	outerRadius	FIXED
+32	numStops	COUNT32
+36	stops	LISTofFIXED
+RESET_COUNTER
+LATER	colors	LISTofCOLOR
+END
+
+REQUEST CreateConicalGradient
+ 4	picture	PICTURE
+ 8	center	POINTFIXED
+16	angle	FIXED
+20	numStops	COUNT32
+24	stops	LISTofFIXED
+END
+
 EOF
-- 
2.5.0



Bug#797175: glx: Recognise glXSetClientInfo2ARB

2015-08-28 Thread Robert Ancell
Package: xtrace
Version: 1.3.1-1
Severity: wishlist
Tags: patch

Please consider this patch for xtrace.

-- System Information:
Debian Release: jessie/sid
  APT prefers wily-updates
  APT policy: (500, 'wily-updates'), (500, 'wily-security'), (500, 
'wily-proposed'), (500, 'wily'), (500, 'trusty-updates'), (500, 'trusty'), 
(100, 'wily-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages xtrace depends on:
ii  libc6  2.21-0ubuntu4

xtrace recommends no packages.

Versions of packages xtrace suggests:
ii  xauth  1:1.0.9-1ubuntu2

-- no debconf information
From 19cabb88bc764a2741f78602dc75310e6165cbdc Mon Sep 17 00:00:00 2001
From: Robert Ancell robert.anc...@canonical.com
Date: Thu, 27 Aug 2015 16:08:07 +0100
Subject: [PATCH 2/4] glx: Recognise glXSetClientInfo2ARB

---
 glx.proto | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/glx.proto b/glx.proto
index a12aed1..c7dcab5 100644
--- a/glx.proto
+++ b/glx.proto
@@ -53,7 +53,7 @@ glXCreateWindow UNSUPPORTED
 glXDeleteWindow UNSUPPORTED
 glXSetClientInfoARB UNSUPPORTED
 glXCreateContextAttribsARB UNSUPPORTED
-UNKNOWN
+glXSetClientInfo2ARB UNSUPPORTED
 UNKNOWN
 UNKNOWN
 UNKNOWN
-- 
2.5.0



Bug#797177: glx: Add glXWaitGL, glXWaitX, glFlush requests

2015-08-28 Thread Robert Ancell
Package: xtrace
Version: 1.3.1-1
Severity: wishlist
Tags: patch

Please consider this patch for xtrace.

-- System Information:
Debian Release: jessie/sid
  APT prefers wily-updates
  APT policy: (500, 'wily-updates'), (500, 'wily-security'), (500, 
'wily-proposed'), (500, 'wily'), (500, 'trusty-updates'), (500, 'trusty'), 
(100, 'wily-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages xtrace depends on:
ii  libc6  2.21-0ubuntu4

xtrace recommends no packages.

Versions of packages xtrace suggests:
ii  xauth  1:1.0.9-1ubuntu2

-- no debconf information
From 29c684d4a81e5799b19db576828dacbf486a5b1a Mon Sep 17 00:00:00 2001
From: Robert Ancell robert.anc...@canonical.com
Date: Fri, 28 Aug 2015 09:47:09 +0100
Subject: [PATCH 4/4] glx: Add glXWaitGL, glXWaitX, glFlush requests

---
 glx.proto | 21 ++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/glx.proto b/glx.proto
index c7dcab5..088 100644
--- a/glx.proto
+++ b/glx.proto
@@ -26,8 +26,8 @@ glXDestroyContext
 glXMakeCurrent RESPONDS
 glXIsDirect RESPONDS
 glXQueryVersion RESPONDS
-glXWaitGL UNSUPPORTED
-glXWaitX UNSUPPORTED
+glXWaitGL
+glXWaitX
 glXCopyContext UNSUPPORTED /* 10 */
 glXSwapBuffers
 glXUseXFont UNSUPPORTED
@@ -160,7 +160,7 @@ glGetTexLevelParameterfv RESPONDS UNSUPPORTED
 glGetTexLevelParameteriv RESPONDS UNSUPPORTED
 glIsEnabled RESPONDS UNSUPPORTED /* 140 */
 glIsList RESPONDS UNSUPPORTED
-glFlush UNSUPPORTED
+glFlush
 glAreTexturesResident RESPONDS UNSUPPORTED
 glDeleteTextures UNSUPPORTED
 glGenTextures RESPONDS UNSUPPORTED
@@ -1278,6 +1278,16 @@ RESPONSE glXQueryVersion
 12	server_minor_version	UINT32
 END
 
+# opcode 8
+REQUEST glXWaitGL
+4	context_tag	CARD32
+END
+
+# opcode 9
+REQUEST glXWaitX
+4	context_tag	CARD32
+END
+
 # opcode 11
 REQUEST glXSwapBuffers
 4	context_tag	CARD32
@@ -1486,6 +1496,11 @@ RESPONSE glGetString
 32	string	STRING8
 END
 
+# opcode 142
+REQUEST glFlush
+4	context_tag	CARD32
+END
+
 EVENT PbufferClobber
  4	event_type	CARD16
  6	draw_type	CARD16
-- 
2.5.0



Bug#797176: randr: Add names of new messages from RandR 1.4 and 1.5

2015-08-28 Thread Robert Ancell
Package: xtrace
Version: 1.3.1-1
Severity: wishlist
Tags: patch

Please consider this patch for xtrace.

-- System Information:
Debian Release: jessie/sid
  APT prefers wily-updates
  APT policy: (500, 'wily-updates'), (500, 'wily-security'), (500, 
'wily-proposed'), (500, 'wily'), (500, 'trusty-updates'), (500, 'trusty'), 
(100, 'wily-backports')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages xtrace depends on:
ii  libc6  2.21-0ubuntu4

xtrace recommends no packages.

Versions of packages xtrace suggests:
ii  xauth  1:1.0.9-1ubuntu2

-- no debconf information
From 26b6eef9c8195f5509c24da3291eca8430a57cf1 Mon Sep 17 00:00:00 2001
From: Robert Ancell robert.anc...@canonical.com
Date: Thu, 27 Aug 2015 16:31:31 +0100
Subject: [PATCH 3/4] randr: Add names of new messages from RandR 1.4 and 1.5

---
 randr.proto | 39 +++
 1 file changed, 39 insertions(+)

diff --git a/randr.proto b/randr.proto
index 35616a3..6b63c99 100644
--- a/randr.proto
+++ b/randr.proto
@@ -116,6 +116,21 @@ GetPanning RESPONDS
 SetPanning RESPONDS
 SetOutputPrimary
 GetOutputPrimary RESPONDS
+# RandR 1.4:
+GetProviders RESPONDS UNSUPPORTED
+GetProviderInfo RESPONDS UNSUPPORTED
+SetProviderOffloadSink
+SetProviderOutputSource
+ListProviderProperties RESPONDS UNSUPPORTED
+QueryProviderProperty RESPONDS UNSUPPORTED
+ConfigureProviderProperty UNSUPPORTED
+ChangeProviderProperty UNSUPPORTED
+DeleteProviderProperty
+GetProviderProperty RESPONDS UNSUPPORTED
+# RandR 1.5:
+GetMonitors RESPONDS UNSUPPORTED
+SetMonitor UNSUPPORTED
+DeleteMonitor
 END
 
 EVENTS
@@ -127,6 +142,7 @@ ERRORS
 BadOutput
 BadCrtc
 BadMode
+BadProvider
 END
 
 CONSTANTS randr_notify
@@ -215,6 +231,7 @@ TYPE CRTC CARD32
 TYPE LISTofCRTC LISTofCARD32
 TYPE MODE CARD32
 TYPE LISTofMODE LISTofCARD32
+TYPE PROVIDER CARD32
 
 STRUCT MODEINFO length 32
  0	id	CARD32
@@ -580,6 +597,28 @@ RESPONSE GetOutputPrimary
  8	output	OUTPUT
 END
 
+REQUEST SetProviderOffloadSink
+ 4	provider	PROVIDER
+ 8	sinkProvider	PROVIDER
+ 12	configTimestamp	TIMESTAMP
+END
+
+REQUEST SetProviderOutputSource
+ 4	provider	PROVIDER
+ 8	sourceProvider	PROVIDER
+ 12	configTimestamp	TIMESTAMP
+END
+
+REQUEST DeleteProviderProperty
+ 4	provider	PROVIDER
+ 8	property	ATOM
+END
+
+REQUEST DeleteMonitor
+ 4	window	WINDOW
+ 8	name	ATOM
+END
+
 EVENT RRScreenChangeNotify
  1	rotation	RANDR_RR
  4	timestamp	TIMESTAMP
-- 
2.5.0



Bug#649517: simple-scan

2014-07-20 Thread Robert Ancell
 [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=649517

Was fixed in 3.5.1 - Number multiple page documents from 1

 [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739683

It is likely that this driver doesn't support page size or simple-scan
doesn't understand the option used to set it. This can be determined
by looking at the scan log after a scan
(~/.cache/simple-scan/simple-scan.log) or by running simple-scan
--debug.


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



Bug#750374: realmd 0.15.1 available

2014-06-02 Thread Robert Ancell
Package: realmd
Version: 0.15.0-1

A new upstream release of realmd is available.

Thanks,
--Robert


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



Bug#718409: Enable tests

2013-07-31 Thread Robert Ancell
Package: liburcu
Version: 0.7.6-2

Tests were disabled in 0.0.4-1:

liburcu (0.4.4-1) unstable; urgency=low

  * [8f2038] Add Vcs fields to debian/control
  * [a1415d] Imported Upstream version 0.4.4
  * [73c8ab] Prevent dh_auto_test from running, target is broken

 -- Jon Bernard jbern...@debian.org  Thu, 20 May 2010 22:21:00 -0400

They seem to run fine now - can they be re-enabled?


Bug#707536: Run tests at build time

2013-05-09 Thread Robert Ancell
Package: glm
Version: 0.9.4.3-1

Please run the tests at build time to confirm the package is working. This 
requires a build-dependency on cmake, and debian/rules to be set to:

%:
dh $@

override_dh_auto_configure:
dh_auto_configure -- -DGLM_TEST_ENABLE=ON

Note that the tests do not work in 0.9.4.3, they need the following change to 
be applied:
https://github.com/g-truc/glm/commit/f0d4080fe39f4a339b9c1b7fec13fbb07cf76372

Note you can't apply this with quilt to the current .orig as it has the files 
in CRLF format and patch can't handle this (at least as far as I can tell).

Thanks!
--Robert


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



Bug#614739: Please list dependencies one line per dependency

2011-02-22 Thread Robert Ancell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: webkit
Severity: wishlist

Please list the package dependencies in debian/control one line per
dependency as this makes it much easier to read and diff.


- -- System Information:
Debian Release: squeeze/sid
  APT prefers natty-updates
  APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500,
'natty')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-4-generic (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk1knoEACgkQGOqhiQ98iC6XqACg3Lx+xWWWBvHjeVcZ1SjCFWZk
9mcAoKZi21WZoUPtQunwT4aDH1M5dcRZ
=ZAvG
-END PGP SIGNATURE-




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



Bug#614740: webkit: Fix documentation build

2011-02-22 Thread Robert Ancell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: webkit
Severity: normal

Attached patch fixes documentation build


- -- System Information:
Debian Release: squeeze/sid
  APT prefers natty-updates
  APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500,
'natty')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-4-generic (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk1knxAACgkQGOqhiQ98iC48oQCgqBv30y3r7QySjzVU+zs3wD0s
bWQAnReC0EHjjlG8ZsZeUMDnYzXZJ6iN
=W7g4
-END PGP SIGNATURE-

37,39c37,41
 	-test -d build/Source/WebKit/gtk/docs  \
 		cd build/Source/WebKit/gtk/docs  \
 		make maintainer-clean
---
 	-for version in $(GTK_VERSIONS); do \
 		test -d build-$${version}/Source/WebKit/gtk/docs  \
 			cd build-${version}/Source/WebKit/gtk/docs  \
 			make maintainer-clean; \
 	done
97c99
 		ln -fs ../../../build-$${version}/Source/WebKit/gtk/docs/version.xml \
---
 		ln -fs ../../../../build-$${version}/Source/WebKit/gtk/docs/version.xml \
101c103
 		cd ..; \
---
 		cd ../../../../..; \
121,123c123,124
 	# FIXME: broken upstream
 	#install -m 644 Source/WebKit/gtk/docs/html/* \
 	#	debian/tmp-2.0/usr/share/doc/libwebkitgtk-dev/html/
---
 	install -m 644 build-2.0/Source/WebKit/gtk/docs/html/* \
 		debian/tmp-2.0/usr/share/doc/libwebkitgtk-dev/html/
136,138c137,138
 	# FIXME: broken upstream
 	# install -m 644 Source/WebKit/gtk/docs/html/* \
 	# 	debian/tmp-3.0/usr/share/doc/libwebkitgtk-3.0-dev/html/
---
 	install -m 644 build-3.0/Source/WebKit/gtk/docs/html/* \
 		debian/tmp-3.0/usr/share/doc/libwebkitgtk-3.0-dev/html/


webkit-doc-fix.patch.sig
Description: PGP signature


Bug#612555: libwnck: New GTK3 version available

2011-02-08 Thread Robert Ancell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: libwnck
Severity: wishlist

There is a new GTK3 version of libwnck available.  A package has been
prepared
in lp:~ubuntu-desktop/libwnck/ubuntugtk3.  This is a parallel installable
package like gnome-desktop3.  Unresolved issues:
- - Should the -dev package be libwnck-3-dev or libwnck-dev?  Both versions
  contain /usr/bin/wnckprop so they have to conflict or this binary
has to be
  renamed.
- - Can we drop the epoch on the old version?  Does this force us to use
  libwnck-3-dev?

- -- System Information:
Debian Release: squeeze/sid
  APT prefers natty-updates
  APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500,
'natty')
Architecture: amd64 (x86_64)

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

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

iEYEARECAAYFAk1SNd4ACgkQGOqhiQ98iC7/KgCfX8qlEuqndZN5Vh3nSlKk+mlR
i58An222t2FAcwaZe8T2cNIxEY3RcN87
=mQQi
-END PGP SIGNATURE-




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



Bug#554552: Git commit that makes gold linker work

2010-12-05 Thread Robert Ancell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

This is fixed in the upstream git:
http://git.gnome.org/browse/gimp/commit/?id=582cb0f14eb9f145bd2a2f5c9fda12309ae0229f

And has been applied to the Ubuntu package.
http://bazaar.launchpad.net/~ubuntu-desktop/gimp/ubuntu/files/head%3A/debian/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkz8eHAACgkQGOqhiQ98iC6UswCdE/7Zg81Be1o3cZHZsnRL5Qti
5d0AoONhu7tDSSBYapbkf6d5r9uVKyf7
=Hf9R
-END PGP SIGNATURE-




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



Bug#590222: Proposed lcms2 package

2010-08-08 Thread Robert Ancell

Find attached a proposed package for lcms2


lcms2_2.0a-0ubuntu1.debian.tar.gz
Description: GNU Zip compressed data


Bug#582446: Diagnosis

2010-07-01 Thread Robert Ancell

Weird, I suspect the problem is here
format=SANE_FRAME_GRAY last_frame=SANE_TRUE bytes_per_line=0 
pixels_per_line=0 lines=0 depth=1


And simple-scan isn't handling the 0 results. This doesn't appear to be 
a valid result from SANE. Could you try debugging scanimage and see if 
they get the same results?


Looks like a driver bug to me, though simple-scan should handle invalid 
data gracefully.




Bug#587661: Generated schema files

2010-06-30 Thread Robert Ancell

The generated schema file is /usr/share/glib-2.0/schemas/gschemas.compiled



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



Bug#584981: Split gnome-utils into multiple binary packages

2010-06-07 Thread Robert Ancell

Package: gnome-utils
Version: 2.30.0-1

Please split the gnome-utils package into a binary package per application.

The primary reason for splitting is for consistency:
- For users there is no logical connection between the applications, 
i.e. baobab and gnome-screenshot are no more related than baobab and 
gcalctool.

  - We are exposing a development process convenience to users.
- The current method for removing these applications is to to disable 
their menus.  This is inconsistent with other applications where you can 
use the standard package management tools.
- Removing from the menu does not stop a user from running these tools 
from the command line.  A sysadmin may want only a subset of these tools 
exposed to their users.


I tried to make a Debian patch from the Ubuntu package [1], but I ran 
into trouble with the .install files - the Debian package has a more 
complex build system.  Also note I dropped the ancient Conflicts that 
don't seem to exist anymore.


[1] 
https://edge.launchpad.net/ubuntu/+source/gnome-utils/2.30.0-1ubuntu2https://edge.launchpad.net/ubuntu/+source/gnome-utils/2.30.0-1ubuntu2


Bug#579018: PyGI in Ubuntu

2010-06-02 Thread Robert Ancell

I've proposed a PyGI package for Ubuntu:
http://bazaar.launchpad.net/~ubuntu-desktop/pygi/ubuntu/files/head:/debian/ 
http://bazaar.launchpad.net/%7Eubuntu-desktop/pygi/ubuntu/files/head:/debian/


It uses pysupport as best I can decipher the documentation, feel free to 
use in Debian as required.


--Robert
Ubuntu Desktop



Bug#167372: Splitting GNOME Games

2010-05-24 Thread Robert Ancell
Are people still opposed to splitting the games?  We have been 
delivering GNOME Games as a split package since 2.27.92 (Ubuntu 9.04).  
I am a GNOME Games developer and Ubuntu packager.  I am very keen to 
push this patch into Debian, please let me know if you are interested.


The reasons I split the package:
- Users don't understand why they can't remove individual games (hiding 
them in the menu is not a good solution)
- There are too many games for a default installation - this clutters up 
the menu, we reduced the default number to 5
- The GNOME Games project provides games in differing levels of quality 
and using different technology.  We can now pick the best and not 
require so many dependencies on our CD.


Thanks,
--Robert Ancell




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



Bug#582351: libffi-dev: Installs headers into /usr/include/i486-linux-gnu

2010-05-20 Thread Robert Ancell
Package: libffi-dev
Version: 3.0.9-2
Severity: grave
Tags: squeeze
Justification: renders package unusable

Header files are installed in /usr/include/i486-linux-gnu/ (and
similarly named directories on other architectures), not
/usr/include.  Stops pygobject from compiling.

-- System Information:
Debian Release: squeeze/sid
  APT prefers maverick-updates
  APT policy: (500, 'maverick-updates'), (500, 'maverick-security'), (500, 
'maverick')
Architecture: i386 (i686)

Kernel: Linux 2.6.34-2-generic (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libffi-dev depends on:
ii  dpkg   1.15.5.6ubuntu5   Debian package management system
ii  install-info   4.13a.dfsg.1-5ubuntu1 Manage installed documentation in 
ii  libffi53.0.9-2   Foreign Function Interface library

libffi-dev recommends no packages.

libffi-dev suggests no packages.

-- no debconf information



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



Bug#559128: Please split debian/control package lists to one package per line

2009-12-01 Thread Robert Ancell

Package: gtk-vnc
Version: 0.3.10-2

Please split the Depends, Build-Depends lines in debian/control to one 
package per line.  This makes it easier to read and easier to diff


Patch attached for 0.3.10-2

7,10c7,23
 Build-Depends: cdbs, debhelper (= 7), python-central, libgtk2.0-dev,
  python-all-dev, libgnutls-dev (= 1.4.0), python-gtk2-dev (= 2.0),
  libcairo2-dev, xulrunner-dev, autotools-dev, quilt,
  automake, autoconf, libffi-dev, libtool, libsasl2-dev, intltool
---
 Build-Depends: cdbs,
debhelper (= 7),
python-central,
libgtk2.0-dev,
python-all-dev,
libgnutls-dev (= 1.4.0),
python-gtk2-dev (= 2.0),
libcairo2-dev,
xulrunner-dev,
autotools-dev,
quilt,
automake,
autoconf,
libffi-dev,
libtool,
libsasl2-dev,
intltool
18c31,32
 Depends: ${shlibs:Depends}, ${misc:Depends}
---
 Depends: ${shlibs:Depends},
  ${misc:Depends}
33c47,49
 Depends: ${shlibs:Depends}, ${misc:Depends}, libgtk-vnc-1.0-0 (=${binary:Version})
---
 Depends: ${shlibs:Depends},
  ${misc:Depends},
  libgtk-vnc-1.0-0 (=${binary:Version})
49,50c65,69
 Depends: ${misc:Depends}, libgtk-vnc-1.0-0 (= ${binary:Version}),
  libgtk2.0-dev (= 2.0), libgnutls-dev (= 1.4.0), libcairo2-dev (= 1.2.0)
---
 Depends: ${misc:Depends},
  libgtk-vnc-1.0-0 (= ${binary:Version}),
  libgtk2.0-dev (= 2.0),
  libgnutls-dev (= 1.4.0),
  libcairo2-dev (= 1.2.0)
65c84,87
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-gtk2 (= 2.0)
---
 Depends: ${shlibs:Depends},
  ${misc:Depends},
  ${python:Depends},
  python-gtk2 (= 2.0)
82,83c104,107
 Depends: ${shlibs:Depends}, ${misc:Depends}, libgtk-vnc-1.0-0 (= ${binary:Version}),
  iceweasel | iceape-browser
---
 Depends: ${shlibs:Depends},
  ${misc:Depends},
  libgtk-vnc-1.0-0 (= ${binary:Version}),
  iceweasel | iceape-browser
98c122,123
 Depends: ${shlibs:Depends}, ${misc:Depends}
---
 Depends: ${shlibs:Depends},
  ${misc:Depends}


Bug#558729: Please split debian/control package lists to one package per line

2009-11-29 Thread Robert Ancell

Package: xscreensaver
Version: 5.10-3

Please split the Depends, Build-Depends lines in debian/control to one 
package per line.  This makes it easier to read and easier to diff


Patch attached for 5.10-3
6c6,38
 Build-Depends: bc, debhelper (= 7.0), fortune-mod, libgtk2.0-dev, libpam0g-dev (= 0.72), libgl1-mesa-dev | libgl-dev, libglu1-mesa-dev | xlibmesa-glu-dev | libglu-dev, xutils-dev, libgnome2-dev, libxml2-dev, libglade2-dev, libjpeg62-dev, libgle-dev, intltool, autotools-dev, libx11-dev, libxext-dev, libxinerama-dev, libxmu-dev, libxpm-dev, libxrandr-dev, libxss-dev, libxt-dev, libxtst-dev, libxxf86misc-dev, libxxf86vm-dev, x11proto-core-dev, xbitmaps, quilt, gdm, libxss-dev, libxtst-dev, libxxf86misc-dev
---
 Build-Depends: bc,
debhelper (= 7.0),
 	   fortune-mod,
 	   libgtk2.0-dev,
 	   libpam0g-dev (= 0.72),
 	   libgl1-mesa-dev | libgl-dev,
 	   libglu1-mesa-dev | xlibmesa-glu-dev | libglu-dev,
 	   xutils-dev,
 	   libgnome2-dev,
 	   libxml2-dev,
 	   libglade2-dev,
 	   libjpeg62-dev,
 	   libgle-dev,
 	   intltool,
 	   autotools-dev,
 	   libx11-dev,
 	   libxext-dev,
 	   libxinerama-dev,
 	   libxmu-dev,
 	   libxpm-dev,
 	   libxrandr-dev,
 	   libxss-dev,
 	   libxt-dev,
 	   libxtst-dev,
 	   libxxf86misc-dev,
 	   libxxf86vm-dev,
 	   x11proto-core-dev,
 	   xbitmaps,
 	   quilt,
 	   gdm,
 	   libxss-dev,
 	   libxtst-dev,
 	   libxxf86misc-dev
15,17c47,61
 Conflicts: funny-manpages ( 1.3-1), suidmanager ( 0.50), xscreensaver-gnome ( 4.09-2), xscreensaver-nognome ( 4.09-2), gnome-control-center ( 1:2)
 Recommends: xli | xloadimage, libjpeg-progs, perl5, miscfiles | wordlist
 Suggests: xfishtank, xdaliclock, xscreensaver-gl, fortune, www-browser, qcam | streamer
---
 Conflicts: funny-manpages ( 1.3-1),
suidmanager ( 0.50),
 	   xscreensaver-gnome ( 4.09-2),
 	   xscreensaver-nognome ( 4.09-2),
 	   gnome-control-center ( 1:2)
 Recommends: xli | xloadimage,
 libjpeg-progs,
 	perl5,
 	miscfiles | wordlist
 Suggests: xfishtank,
   xdaliclock,
 	  xscreensaver-gl,
 	  fortune,
 	  www-browser,
 	  qcam | streamer
35,37c79,84
 Conflicts: xscreensaver ( 5.04-3), kscreensaver-xsavers ( 4:3.5.9-1)
 Replaces: xscreensaver ( 5.04-3), gnome-screensaver ( 2.15.4-0ubuntu1)
 Breaks: gnome-screensaver ( 2.26), kscreensaver-xsaver (= 4:4.2.4-1)
---
 Conflicts: xscreensaver ( 5.04-3),
kscreensaver-xsavers ( 4:3.5.9-1)
 Replaces: xscreensaver ( 5.04-3),
   gnome-screensaver ( 2.15.4-0ubuntu1)
 Breaks: gnome-screensaver ( 2.26),
 kscreensaver-xsaver (= 4:4.2.4-1)
55,57c102,110
 Depends: ${shlibs:Depends}, xscreensaver-data (= 5.04-3), dictionaries-common, libjpeg-progs, netpbm
 Enhances: xscreensaver, gnome-screensaver
 Conflicts: xscreensaver ( 5.04-3), kscreensaver-xsavers ( 4:3.5.9-1)
---
 Depends: ${shlibs:Depends},
  xscreensaver-data (= 5.04-3),
  dictionaries-common,
  libjpeg-progs,
 	 netpbm
 Enhances: xscreensaver,
   gnome-screensaver
 Conflicts: xscreensaver ( 5.04-3),
kscreensaver-xsavers ( 4:3.5.9-1)
59c112,113
 Breaks: gnome-screensaver ( 2.26), kscreensaver-xsaver (= 4:4.2.4-1)
---
 Breaks: gnome-screensaver ( 2.26),
 kscreensaver-xsaver (= 4:4.2.4-1)
99c153,154
 Breaks: gnome-screensaver ( 2.26), kscreensaver-xsaver (= 4:4.2.4-1)
---
 Breaks: gnome-screensaver ( 2.26),
 kscreensaver-xsaver (= 4:4.2.4-1)
123,124c178,181
 Depends: ${shlibs:Depends}, xscreensaver-gl (= 5.04-3)
 Enhances: xscreensaver, gnome-screensaver
---
 Depends: ${shlibs:Depends},
  xscreensaver-gl (= 5.04-3)
 Enhances: xscreensaver,
   gnome-screensaver
127c184,185
 Breaks: gnome-screensaver ( 2.26), kscreensaver-xsaver (= 4:4.2.4-1)
---
 Breaks: gnome-screensaver ( 2.26),
 kscreensaver-xsaver (= 4:4.2.4-1)


Bug#544003: List dependencies using multiple lines to help merging

2009-08-27 Thread Robert Ancell

Package: libgtk-vnc-1.0-0
Version: 0.3.9-1

Hi,

Could you modify the dependency lists in debian/control to have each 
dependency on a seperate line, i.e.:

Build-Depends: cdbs,
  debhelper (= 5),
  python-central,
  libgtk2.0-dev,
  python-all-dev,
  libgnutls-dev (= 1.4.0),
  python-gtk2-dev (= 2.0),
  libcairo2-dev,
  iceape-dev (= 1.1.9-5),
  autotools-dev,
  quilt,
  automake,
  autoconf,
  libffi-dev,
  libtool,
  libsasl2-dev

This helps when merging Debian changes into the Ubuntu package.

Thanks!
--Robert Ancell




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



Bug#419350: Python GtkGLExt bindings not build for Python 2.5

2007-04-15 Thread Robert Ancell

Package: python-gtkglext1
Version: 1.1.0-1

As shown here:
http://packages.debian.org/cgi-bin/search_contents.pl?searchmode=filelistword=python-gtkglext1version=unstablearch=i386
bindings are build for Python 2.4 but _not_ Python 2.5.

I have attached an updated rules script that builds against all
installed versions of Python.

I copied this style from an existing Python package, the packaging
rules are show here:
http://wiki.debian.org/DebianPython/NewPolicy

Thanks,
--Robert


rules
Description: Binary data


Bug#314410: Menu item view-memory registers has broken logic

2005-06-15 Thread Robert Ancell
Package: gcalctool
Version: 5.6.14-1
Severity: normal

Hi,

There is a logic error with the view-memory registers menu checkbox.

Steps taken to reproduce:
1. Load gcalctool
2. Check view-memory registers. The memory register window opens and the
menu item is checked.
3. Close memory register window using window manager controls. Window closes
and menu item is unchecked.
4. Check view-memory registers. Window does not open. Menu item is checked.
5. Check view-memory registers. Window opens. Menu item is unchecked.

From then on the logic is inverted.

Cheers,
--Robert Ancell

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

Versions of packages gcalctool depends on:
ii  gconf2   2.10.0-2GNOME configuration database syste
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.10.1-2The ATK accessibility toolkit
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.1-2 The Bonobo UI library
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libesd0  0.2.35-2.1  Enlightened Sound Daemon - Shared 
ii  libgconf2-4  2.10.0-2GNOME configuration database syste
ii  libgcrypt11  1.2.0-11.1  LGPL Crypto library - runtime libr
ii  libglib2.0-0 2.6.5-1 The GLib library of C routines
ii  libgnome-keyring00.4.2-1 GNOME keyring services library
ii  libgnome2-0  2.10.0-3The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.10.2-2A powerful object-oriented display
ii  libgnomeui-0 2.10.0-2The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.10.1-4The GNOME virtual file-system libr
ii  libgnutls11  1.0.16-13.1 GNU TLS library - runtime library
ii  libgpg-error01.0-1   library for common error values an
ii  libgtk2.0-0  2.6.7-2 The GTK+ graphical user interface 
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  liborbit21:2.12.2-1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libtasn1-2   0.2.10-4Manage ASN.1 structures (runtime)
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxml2  2.6.16-7GNOME XML library
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

gcalctool recommends no packages.

Versions of packages gcalctool is related to:
ii  reportbug 3.13   reports bugs in the Debian distrib
pn  totem-gstreamer   none (no description available)

-- no debconf information


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



Bug#304278: pppconfig displays wrong password when spaces in name

2005-04-11 Thread Robert Ancell
Package: pppconfig
Version: 2.3.11
Severity: normal

Hi,

If pppconfig configures a connection with a space in the name when you go to
change the connection in pppconfig it displays the password as the first
word after the space in the name.

e.g. Make a connection called Bob's connection using pppconfig.
After reopening pppconfig the password will be displayed as connection. I
do not know if this is the password used to connect with (still getting my
#*!*@ modem to work! :) ).


Cheers,
--Robert Ancell

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages pppconfig depends on:
ii  dialog  1.0-20050306-1   Displays user-friendly dialog boxe
ii  ppp 2.4.3-20050321+1 Point-to-Point Protocol (PPP) daem
ii  whiptail0.51.6-21Displays user-friendly dialog boxe

-- no debconf information


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