Bug#752040: pysol fails to run

2014-06-19 Thread Michael Sebastian
Package: pysolfc
Version: 2.0-3
Followup-For: Bug #752040

Dear Maintainer,

Pysol was working fine this morning.
Today I did an update.
Now Pysol does not work.
I get exactly the same message as the bug reporter.

Regards,
Michael Sebastian

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

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

Versions of packages pysolfc depends on:
ii  python2.7.6-2
ii  python-configobj  4.7.2+ds-5
ii  python-pygame 1.9.1release+dfsg-10
ii  python-tk 2.7.7-1

Versions of packages pysolfc recommends:
ii  python-pil.imagetk [python-imaging-tk]  2.3.0-2+b1
pn  tk-tile none

Versions of packages pysolfc suggests:
pn  freecell-solver   none
ii  pysolfc-cardsets  2.0+dfsg2-1

-- 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#741070: note

2014-03-30 Thread Michael Sebastian
I can also confirm installing the version from experimental fixes the problem.
There were several dependency problems I had to work through.


ja...@jasonwoof.com: 

You need the josm-plugins package from experimental.

Bug#304890: Can someone please sponsor Marcio Teixeira?

2006-06-20 Thread Michael Sebastian

To any DD's who are listening,

Please help Marcio submit his packages.
Marcio is not a Debian developer and needs someone to sponsor him. 
Can anyone help? (I'm not a DD either.)

http://lists.alioth.debian.org/pipermail/pkg-freebob-devel/2006-March/03.html

It would be really nice to get updated firewire packages into debian.
I have built Marcio's packages from source and they work on amd64.
I needed them to enable firewire support for mythtv.
It is a shame to see this package in unstable without an update from
upstream since 2003. Upstream has had active development and released
V1.2.1 in April.

Marcio's packages are here:
http://pkg-freebob.alioth.debian.org/debian/pool/main/libr/libraw1394/
http://pkg-freebob.alioth.debian.org/debian/pool/main/libi/libiec61883/

Please also add the libiec61883 package to debian.
This library is from the same upstream source and the two libraries
work together. Both are needed for mythtv to record from a cable TV set
top box.

Thanks,
Michael Sebastian





__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


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



Bug#345620: videogen: better error messages needed

2006-01-02 Thread Michael Sebastian

Subject: videogen: better error messages needed
Package: videogen
Version: 0.32-1
Severity: normal
Tags: patch



-- System Information:
Debian Release: testing/unstable
  APT prefers breezy-security
  APT policy: (500, 'breezy-security'), (500, 'breezy-backports'),
(500, 'breezy')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-10-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages videogen depends on:
ii  bc   1.06-17 The GNU bc arbitrary
precision calii  libc62.3.5-1ubuntu12 GNU C
Library: Shared libraries an
videogen recommends no packages.

-- no debconf information

I became somewhat frustrated using videogen.
It worked OK when I used -m=1280x768
When I tried -m=1366x768 I got a confusing error.

$ /usr/X11R6/bin/videogen -m=1366x768
argument 1 (-m=1366x768) has an invalid parameter
command line syntax error

The error message dosen't explain what I'm doing wrong.
I had to read the souce code to figure out the problem.

When I read the source I noticed several other types of error messages
were also defaulting to a meaningless message.

I've attached a patch to fix the problem and provide better error
messages.

Regards,
Michael Sebastian




__ 
Yahoo! DSL – Something to write home about. 
Just $16.99/mo. or less. 
dsl.yahoo.com 
diff -urN videogen-0.32/args.c videogen-0.32-new/args.c
--- videogen-0.32/args.c	2006-01-02 00:28:21.0 -0800
+++ videogen-0.32-new/args.c	2006-01-01 23:56:35.0 -0800
@@ -152,6 +152,44 @@
 	break;
 }
 
+			case 2:
+			case -2: {
+	pmsg (VL_DEBUG, [cmdline] arg %u: %s has an invalid parameter \%s\: width must be between %u and %u\n, 
+	ap-aindex, (*ap-options)[ap-oindex].ao_option, (*ap-options)[ap-oindex].ao_parameter, 
+	CFG_WIDTH_MIN, CFG_WIDTH_MAX);
+	pmsg (VL_NORMAL, argument %u (%s) has an invalid parameter: width must be between %u and %u\n, 
+	ap-aindex, ap-argv[ap-aindex], CFG_WIDTH_MIN, CFG_WIDTH_MAX);
+	return (-1);
+}
+
+			case 3:
+			case -3: {
+	pmsg (VL_DEBUG, [cmdline] arg %u: %s has an invalid parameter \%s\: height must be between %u and %u\n, 
+	ap-aindex, (*ap-options)[ap-oindex].ao_option, (*ap-options)[ap-oindex].ao_parameter, 
+	CFG_HEIGHT_MIN, CFG_HEIGHT_MAX);
+	pmsg (VL_NORMAL, argument %u (%s) has an invalid parameter: height must be between %u and %u\n, 
+	ap-aindex, ap-argv[ap-aindex], CFG_HEIGHT_MIN, CFG_HEIGHT_MAX);
+	return (-1);
+}
+
+			case 4:
+			case -4: {
+	pmsg (VL_DEBUG, [cmdline] arg %u: %s has an invalid parameter \%s\: aspect ratio must be between %f and %f\n, 
+	ap-aindex, (*ap-options)[ap-oindex].ao_option, (*ap-options)[ap-oindex].ao_parameter, 
+	CFG_ASPECT_RATIO_MIN, CFG_ASPECT_RATIO_MAX);
+	pmsg (VL_NORMAL, argument %u (%s) has an invalid parameter: aspect ratio must be between %f and %f\n, 
+	ap-aindex, ap-argv[ap-aindex], CFG_ASPECT_RATIO_MIN, CFG_ASPECT_RATIO_MAX);
+	return (-1);
+}
+
+			case 6: {
+	pmsg (VL_DEBUG, [cmdline] arg %u: %s has an invalid parameter \%s\: width must be a multiple of 8\n, 
+	ap-aindex, (*ap-options)[ap-oindex].ao_option, (*ap-options)[ap-oindex].ao_parameter);
+	pmsg (VL_NORMAL, argument %u (%s) has an invalid parameter: width must be a multiple of 8\n, 
+	ap-aindex, ap-argv[ap-aindex]);
+	return (-1);
+}
+
 			default: {
 	pmsg (VL_DEBUG, [cmdline] arg %u: %s has an invalid parameter \%s\\n, ap-aindex,
 		(*ap-options)[ap-oindex].ao_option, (*ap-options)[ap-oindex].ao_parameter);
diff -urN videogen-0.32/cfg.y videogen-0.32-new/cfg.y
--- videogen-0.32/cfg.y	2002-10-29 20:51:57.0 -0800
+++ videogen-0.32-new/cfg.y	2006-01-02 00:14:22.0 -0800
@@ -168,9 +168,44 @@
 break;
 			}
 
+		case 2:
+		case -2: {
+pmsg (VL_DEBUG, [cfgfile] line %u: invalid parameter %lux%lu: width must be between %u and %u\n, 
+lexer_num_lines, $2, $4, CFG_WIDTH_MIN, CFG_WIDTH_MAX);
+pmsg (VL_VERBOSE, error at line %u: invalid parameter %lux%lu: width must be between %u and %u\n, 
+lexer_num_lines, $2, $4, CFG_WIDTH_MIN, CFG_WIDTH_MAX);
+YYABORT;
+		}
+
+		case 3:
+		case -3: {
+pmsg (VL_DEBUG, [cfgfile] line %u: invalid parameter %lux%lu: height must be between %u and %u\n, 
+lexer_num_lines, $2, $4, CFG_HEIGHT_MIN, CFG_HEIGHT_MAX);
+pmsg (VL_VERBOSE, error at line %u: invalid parameter %lux%lu: height must be between %u and %u\n, 
+lexer_num_lines, $2, $4, CFG_HEIGHT_MIN, CFG_HEIGHT_MAX);
+YYABORT;
+			}
+
+		case 4:
+		case -4: {
+pmsg (VL_DEBUG, [cfgfile] line %u: invalid parameter %lux%lu: aspect ratio must be between %f and %f\n